fix offline tag caching format

This commit is contained in:
Andrew Dolgov 2011-12-05 21:56:03 +03:00
parent 3365de8096
commit 6b6231ded5

View File

@ -1609,7 +1609,7 @@ public class MainActivity extends FragmentActivity implements FeedsFragment.OnFe
tagsString += t + ", ";
}
tagsString.replaceAll("/, $/", "");
tagsString = tagsString.replaceAll(", $", "");
stmtInsert.bindLong(1, article.id);
stmtInsert.bindLong(2, article.unread ? 1 : 0);