mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-19 02:15:28 +00:00
Sync widget unified folders
This commit is contained in:
parent
a2c3f642e0
commit
db6d630431
1 changed files with 5 additions and 4 deletions
|
@ -160,7 +160,7 @@ public class ServiceUI extends IntentService {
|
|||
break;
|
||||
|
||||
case "sync":
|
||||
onSync(id, -1L);
|
||||
onSync(id, -1L, false);
|
||||
break;
|
||||
|
||||
case "widget":
|
||||
|
@ -462,7 +462,7 @@ public class ServiceUI extends IntentService {
|
|||
}
|
||||
}
|
||||
|
||||
private void onSync(long aid, long fid) {
|
||||
private void onSync(long aid, long fid, boolean unified) {
|
||||
DB db = DB.getInstance(this);
|
||||
try {
|
||||
db.beginTransaction();
|
||||
|
@ -477,7 +477,8 @@ public class ServiceUI extends IntentService {
|
|||
if (folders.size() > 0)
|
||||
Collections.sort(folders, folders.get(0).getComparator(this));
|
||||
for (EntityFolder folder : folders)
|
||||
EntityOperation.sync(this, folder.id, true);
|
||||
if (!unified || folder.unified)
|
||||
EntityOperation.sync(this, folder.id, true);
|
||||
}
|
||||
|
||||
db.setTransactionSuccessful();
|
||||
|
@ -489,7 +490,7 @@ public class ServiceUI extends IntentService {
|
|||
private void onWidget(Intent intent, int appWidgetId) {
|
||||
long aid = intent.getLongExtra("account", -1L);
|
||||
long fid = intent.getLongExtra("folder", -1L);
|
||||
onSync(aid, fid);
|
||||
onSync(aid, fid, fid < 0);
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||
String key = "widget." + appWidgetId + ".sync";
|
||||
|
|
Loading…
Add table
Reference in a new issue