fix uploading starred article status while going online also marking them as published
This commit is contained in:
parent
de9854c6ea
commit
1bf843a451
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.fox.ttrss"
|
||||
android:versionCode="318"
|
||||
android:versionName="1.93" >
|
||||
android:versionCode="319"
|
||||
android:versionName="1.94" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="15"
|
||||
|
@ -242,7 +242,7 @@ public class OfflineUploadService extends IntentService {
|
||||
private void uploadPublished() {
|
||||
Log.d(TAG, "syncing modified offline data... (published)");
|
||||
|
||||
final String ids = getModifiedIds(ModifiedCriteria.MARKED);
|
||||
final String ids = getModifiedIds(ModifiedCriteria.PUBLISHED);
|
||||
|
||||
if (ids.length() > 0) {
|
||||
ApiRequest req = new ApiRequest(getApplicationContext()) {
|
||||
|
Loading…
Reference in New Issue
Block a user