瀏覽代碼

local network: fix crash on opening the VC by making sure that we provide a proper string to the UPnP library

Felix Paul Kühne 10 年之前
父節點
當前提交
be0cfc04f7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Sources/VLCLocalServerListViewController.m

+ 1 - 1
Sources/VLCLocalServerListViewController.m

@@ -239,7 +239,7 @@
     [[managerInstance DB] addObserver:self];
 
     //Optional; set User Agent
-    [[managerInstance SSDP] setUserAgentProduct:[NSString stringWithFormat:@"VLCforiOS/%@", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]] andOS:[NSString stringWithFormat:@"iOS/%@", [[UIDevice currentDevice] systemVersion]]];
+    [[managerInstance SSDP] setUserAgentProduct:[NSString stringWithFormat:@"VLCforiOS/%@", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"]] andOS:[NSString stringWithFormat:@"iOS/%@", [[UIDevice currentDevice] systemVersion]]];
 
     //Search for UPnP Devices
     [[managerInstance SSDP] startSSDP];