summaryrefslogtreecommitdiff
path: root/community/deja-dup/not-check-ubuntuone-couch.patch
blob: d7fb903a1f07aedda6304bbf7dd4deea0fcea751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
diff -Naur deja-dup-24.0.orig/common/BackendU1.vala deja-dup-24.0/common/BackendU1.vala
--- deja-dup-24.0.orig/common/BackendU1.vala	2012-08-07 00:20:51.000000000 +0200
+++ deja-dup-24.0/common/BackendU1.vala	2012-11-05 16:39:34.140104977 +0100
@@ -75,11 +75,14 @@
 
 class U1Checker : Checker
 {
-  PythonChecker pyu1;
   construct {
     try {
       var proxy = BackendU1.get_creds_proxy();
-      if (proxy.get_name_owner() == null) {
+      if (proxy.get_name_owner() != null) {
+        available = true;
+        complete = true;
+      }
+      else {
         available = false;
         complete = true;
       }
@@ -89,24 +92,6 @@
       available = false;
       complete = true;
     }
-
-    if (!complete) {
-      // A bit of abstraction leakage here; we have to keep these imports in
-      // line with what duplicity uses.  Maybe we should add to duplicity a way
-      // to ask 'can I use this backend?'
-      pyu1 = PythonChecker.get_checker("ubuntuone.platform.credentials, ubuntuone.couch.auth");
-      if (pyu1.complete) {
-        available = pyu1.available;
-        complete = pyu1.complete;
-      }
-      else {
-        pyu1.notify["complete"].connect(() => {
-          available = pyu1.available;
-          complete = pyu1.complete;
-          pyu1 = null;
-        });
-      }
-    }
   }
 }