Browse Source

修改songChannelUid字段,去掉拼接deviceUUid

尹永奇 5 years ago
parent
commit
d739c73200

+ 1 - 1
MKRRadioManager/Classes/MKRRadioManager/MKRWIFIDeviceManager/MKRWIFIDeviceManager.m

@@ -707,7 +707,7 @@ static inline void wd_playControl_queue(void (^block)(void)){
                 songChannel = [channelString integerValue];
             }
             self.currentResource.songChannel = songChannel;
-            NSString *songChannelUid = [NSString stringWithFormat:@"%@-%@-%zd",self.userID,device.deviceUUID,songChannel];
+            NSString *songChannelUid = [NSString stringWithFormat:@"%@-%zd",self.userID,songChannel];
             self.currentResource.songChannelUid = songChannelUid;
             self.currentResource.songFlag = [NSString stringWithFormat:@"%@_%zd",songChannelUid,self.currentResource.songID];
             wd_main_queue(^{

+ 1 - 1
fastlane/Fastfile

@@ -20,7 +20,7 @@ git_add(path: ".")
 
 #    git commit
 
-git_commit(path: ".", message: "修改GetDocumentItem崩溃")
+git_commit(path: ".", message: "修改songChannelUid字段,去掉拼接deviceUUid")
 
 #    git push origin master