Browse Source

Use themingLogoBlack only when using theming color.

Signed-off-by: Ivan Sein <ivan@nextcloud.com>
Ivan Sein 5 years ago
parent
commit
a2214ac2a2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      iOSClient/Main/CCMain.m

+ 1 - 1
iOSClient/Main/CCMain.m

@@ -586,7 +586,7 @@
     UIImage *image = [UIImage imageNamed:@"themingLogo"];
     
     tableCapabilities *capabilities = [[NCManageDatabase sharedInstance] getCapabilitesWithAccount:appDelegate.activeAccount];
-    if ([capabilities.themingColorText isEqualToString:@"#000000"] && [UIImage imageNamed:@"themingLogoBlack"]) {
+    if ([NCBrandOptions sharedInstance].use_themingColor && [capabilities.themingColorText isEqualToString:@"#000000"] && [UIImage imageNamed:@"themingLogoBlack"]) {
         image = [UIImage imageNamed:@"themingLogoBlack"];
     }