Browse Source

VLCDownloadViewController: Use correct download failed string

Soomin Lee 6 years ago
parent
commit
35f6b4b737
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Sources/VLCDownloadViewController.m

+ 1 - 1
Sources/VLCDownloadViewController.m

@@ -317,7 +317,7 @@ typedef NS_ENUM(NSUInteger, VLCDownloadScheme) {
 
 
 - (void)downloadFailedWithErrorDescription:(NSString *)description
 - (void)downloadFailedWithErrorDescription:(NSString *)description
 {
 {
-    [VLCAlertViewController alertViewManagerWithTitle:NSLocalizedString(@"SCHEME_NOT_SUPPORTED", nil)
+    [VLCAlertViewController alertViewManagerWithTitle:NSLocalizedString(@"DOWNLOAD_FAILED", nil)
                                          errorMessage:description
                                          errorMessage:description
                                        viewController:self];
                                        viewController:self];
 }
 }