Skip to content

Commit

Permalink
Merge pull request #10 from muxinc/nil
Browse files Browse the repository at this point in the history
Fix crash
  • Loading branch information
wtao-mux authored Aug 30, 2018
2 parents ed678cb + 146d1d5 commit 011e1e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MUXSDKStats/MUXSDKStats/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1.1</string>
<string>0.1.2</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
4 changes: 2 additions & 2 deletions MUXSDKStats/MUXSDKStats/MUXSDKPlayerBinding.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

// SDK constants.
NSString *const MUXSDKPluginName = @"apple-mux";
NSString *const MUXSDKPluginVersion = @"0.1.1";
NSString *const MUXSDKPluginVersion = @"0.1.2";

// Min number of seconds between timeupdate events. (100ms)
double MUXSDKMaxSecsBetweenTimeUpdate = 0.1;
Expand Down Expand Up @@ -352,7 +352,7 @@ - (MUXSDKPlayerData *)getPlayerData {
[errors addObject:[self buildError:@"l"
domain:event.errorDomain
code:event.errorStatusCode
message:event.errorComment]];
message:(event.errorComment ? event.errorComment : @"")]];

}
} else {
Expand Down
2 changes: 1 addition & 1 deletion MUXSDKStats/MUXSDKStatsTv/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1.1</string>
<string>0.1.2</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit 011e1e6

Please sign in to comment.