summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-03-23 13:40:25 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-03-23 13:40:25 -0400
commit1d8d483aa9843407e0940ee0b01dcbdca7e6b2f9 (patch)
tree1f14fca9846c529d5e22606fbd799797ece98b40
parent6e98124ee26f7d70e9fcd36e456427fd4338b510 (diff)
downloadsdl_ios-bugfix/issue-1595-text-and-graphic-crash.tar.gz
Ensure that text and graphic updates aren't sent before we are readybugfix/issue-1595-text-and-graphic-crash
-rw-r--r--SmartDeviceLink/SDLTextAndGraphicManager.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLTextAndGraphicManager.m b/SmartDeviceLink/SDLTextAndGraphicManager.m
index 2d04f74ed..0685d6fd6 100644
--- a/SmartDeviceLink/SDLTextAndGraphicManager.m
+++ b/SmartDeviceLink/SDLTextAndGraphicManager.m
@@ -712,7 +712,7 @@ NS_ASSUME_NONNULL_BEGIN
// Auto-send an updated show
if ([self sdl_hasData]) {
- [self sdl_updateWithCompletionHandler:nil];
+ [self updateWithCompletionHandler:nil];
}
}