Skip to content

Commit

Permalink
Remove exclamation mark from error message
Browse files Browse the repository at this point in the history
  • Loading branch information
SoneeJohn committed Feb 19, 2020
1 parent f6aada7 commit afd4853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XCDYouTubeKit/XCDYouTubeVideoQueryOperation.m
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ - (void) finishWithStreamURLs:(NSDictionary *)streamURLs streamErrors:(NSDiction

if (streamURLs.count == 0)
{
NSError *error = [NSError errorWithDomain:XCDYouTubeVideoErrorDomain code:XCDYouTubeErrorNoStreamAvailable userInfo:@{NSLocalizedDescriptionKey : @"No stream URLs are reachable!"}];
NSError *error = [NSError errorWithDomain:XCDYouTubeVideoErrorDomain code:XCDYouTubeErrorNoStreamAvailable userInfo:@{NSLocalizedDescriptionKey : @"No stream URLs are reachable."}];
[self finishWithError:error];
return;
}
Expand Down

0 comments on commit afd4853

Please sign in to comment.