fix offline tag caching format
This commit is contained in:
parent
3365de8096
commit
6b6231ded5
@ -1609,7 +1609,7 @@ public class MainActivity extends FragmentActivity implements FeedsFragment.OnFe
|
|||||||
tagsString += t + ", ";
|
tagsString += t + ", ";
|
||||||
}
|
}
|
||||||
|
|
||||||
tagsString.replaceAll("/, $/", "");
|
tagsString = tagsString.replaceAll(", $", "");
|
||||||
|
|
||||||
stmtInsert.bindLong(1, article.id);
|
stmtInsert.bindLong(1, article.id);
|
||||||
stmtInsert.bindLong(2, article.unread ? 1 : 0);
|
stmtInsert.bindLong(2, article.unread ? 1 : 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user