summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-07-14 11:21:19 -0400
committerNicoleYarroch <nicole@livio.io>2020-07-14 11:21:19 -0400
commitb596a34877e696bb21746408dc4972a85ec56e71 (patch)
tree19ff9b9eafcc3da7055607f6c3721d546aa3423b
parent54bb8cefc1933d27a3061468608f326871d693ed (diff)
downloadsdl_ios-b596a34877e696bb21746408dc4972a85ec56e71.tar.gz
Fixed custom name of queue on subscribe button mng
Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--SmartDeviceLink/SDLSubscribeButtonManager.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLSubscribeButtonManager.m b/SmartDeviceLink/SDLSubscribeButtonManager.m
index 2b7c09ba2..505740227 100644
--- a/SmartDeviceLink/SDLSubscribeButtonManager.m
+++ b/SmartDeviceLink/SDLSubscribeButtonManager.m
@@ -44,7 +44,7 @@ NS_ASSUME_NONNULL_BEGIN
if (!self) { return nil; }
if (@available(iOS 10.0, *)) {
- _readWriteQueue = dispatch_queue_create_with_target("com.sdl.lifecycle.responseDispatcher", DISPATCH_QUEUE_SERIAL, [SDLGlobals sharedGlobals].sdlProcessingQueue);
+ _readWriteQueue = dispatch_queue_create_with_target("com.sdl.subscribeButtonManager.readWriteQueue", DISPATCH_QUEUE_SERIAL, [SDLGlobals sharedGlobals].sdlProcessingQueue);
} else {
_readWriteQueue = [SDLGlobals sharedGlobals].sdlProcessingQueue;
}