瀏覽代碼

control color too white FFFFF*

Marino Faggiana 8 年之前
父節點
當前提交
59ec4a20e9
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. 5 2
      iOSClient/AppDelegate.m

+ 5 - 2
iOSClient/AppDelegate.m

@@ -985,9 +985,12 @@
     
         tableCapabilities *capabilities = [[NCManageDatabase sharedInstance] getCapabilitesForAccount:self.activeAccount];
     
-        if ([NCBrandOptions sharedInstance].use_themingColor && capabilities.themingColor.length > 0) {
+        if ([NCBrandOptions sharedInstance].use_themingColor && capabilities.themingColor.length == 7) {
         
-            [NCBrandColor sharedInstance].brand = [CCGraphics colorFromHexString:capabilities.themingColor];
+            if ([[capabilities.themingColor substringWithRange:NSMakeRange(0, 6)] isEqualToString:@"#FFFFF"])
+                [NCBrandColor sharedInstance].brand = [NCBrandColor sharedInstance].customer;
+            else
+                [NCBrandColor sharedInstance].brand = [CCGraphics colorFromHexString:capabilities.themingColor];
             
         } else {