summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-06-15 10:25:00 -0400
committerNicoleYarroch <nicole@livio.io>2020-06-15 10:25:00 -0400
commit2f14d8eed7f42bd7a246fcc54267a04304ea1432 (patch)
treec629ca3f27e6dfc94450df05d59582d5a5e74f2e
parent35c87fbea72f505d36054211a8dcd5c63dafffec (diff)
parentce33ea03a01b52200522915bf4599b823691da74 (diff)
downloadsdl_ios-2f14d8eed7f42bd7a246fcc54267a04304ea1432.tar.gz
Merge branch 'bugfix/issue_1634_wifi_turned_off_breaks_secondary_transport' of https://github.com/smartdevicelink/sdl_ios into bugfix/issue_1634_wifi_turned_off_breaks_secondary_transport
-rw-r--r--SmartDeviceLink/SDLSecondaryTransportManager.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLSecondaryTransportManager.m b/SmartDeviceLink/SDLSecondaryTransportManager.m
index 7e0baf13f..27592a544 100644
--- a/SmartDeviceLink/SDLSecondaryTransportManager.m
+++ b/SmartDeviceLink/SDLSecondaryTransportManager.m
@@ -270,7 +270,7 @@ struct TransportProtocolUpdated {
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIApplicationWillResignActiveNotification object:nil];
self.streamingServiceTransportMap = [@{@(SDLServiceTypeAudio):@(SDLTransportClassInvalid),
- @(SDLServiceTypeVideo):@(SDLTransportClassInvalid)} mutableCopy];
+ @(SDLServiceTypeVideo):@(SDLTransportClassInvalid)} mutableCopy];
self.secondaryTransportType = SDLSecondaryTransportTypeDisabled;
self.transportsForAudioService = @[];
self.transportsForVideoService = @[];