浏览代码

do not explicity start the service
always unbind

tobiasKaminsky 8 年之前
父节点
当前提交
3186c21619
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 3 4
      src/main/java/com/owncloud/android/services/ContactsBackupJob.java

+ 3 - 4
src/main/java/com/owncloud/android/services/ContactsBackupJob.java

@@ -92,7 +92,6 @@ public class ContactsBackupJob extends Job {
             // bind to Operations Service
             operationsServiceConnection = new OperationsServiceConnection(daysToExpire, backupFolder, account);
 
-            getContext().startService(new Intent(getContext(), OperationsService.class));
             getContext().bindService(new Intent(getContext(), OperationsService.class), operationsServiceConnection,
                     OperationsService.BIND_AUTO_CREATE);
 
@@ -190,9 +189,9 @@ public class ContactsBackupJob extends Job {
                     operationsServiceBinder.queueNewOperation(service);
                 }
             }
-
-            getContext().unbindService(operationsServiceConnection);
         }
+
+        getContext().unbindService(operationsServiceConnection);
     }
 
     private String getContactFromCursor(Cursor cursor) {
@@ -237,9 +236,9 @@ public class ContactsBackupJob extends Job {
         public void onServiceConnected(ComponentName component, IBinder service) {
             Log_OC.d(TAG, "service connected");
 
-            operationsServiceBinder = (OperationsService.OperationsServiceBinder) service;
 
             if (component.equals(new ComponentName(getContext(), OperationsService.class))) {
+                operationsServiceBinder = (OperationsService.OperationsServiceBinder) service;
                 expireFiles(daysToExpire, backupFolder, account);
             }
         }