Skip to content

Commit

Permalink
Continuation of previous fix
Browse files Browse the repository at this point in the history
  • Loading branch information
barijaona committed Sep 4, 2013
1 parent 9f64a9e commit 8c42af7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ most recent build should be at the top of this file.

Thanks!

3.0.0 Beta 18
-------------
- Improvement on Beta 17

3.0.0 Beta 17
-------------
- Fix a serious problem with using the "Mark updated articles as new" preference
Expand Down
2 changes: 1 addition & 1 deletion notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<h1>Version notes</h1>

<h2 id="beta17">3.0.0 Beta 17</h2>
<h2 id="beta17">3.0.0 Beta 18</h2>
<p><strong>Mac OS Snow Leopard (10.6) or later only !!!</strong></p>

<ul>
Expand Down
2 changes: 1 addition & 1 deletion src/Database.m
Original file line number Diff line number Diff line change
Expand Up @@ -1557,7 +1557,7 @@ -(BOOL)createArticle:(NSInteger)folderID article:(Article *)article guidHistory:
// If the folder is not displayed, then the article text has not been loaded yet.
if (existingBody == nil)
{
FMResultSet * results = [sqlDatabase executeQueryWithFormat:@"select text from messages where folder_id=%ld and message_id=%@", (long)folderID, preparedArticleGuid];
FMResultSet * results = [sqlDatabase executeQueryWithFormat:@"select text from messages where folder_id=%ld and message_id=%@", (long)folderID, articleGuid];
if ([results next])
{
existingBody = [results stringForColumn:@"text"];
Expand Down

0 comments on commit 8c42af7

Please sign in to comment.