summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDeleteFileOperation.m
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2018-01-31 15:18:23 -0500
committerJoel Fischer <joeljfischer@gmail.com>2018-01-31 15:18:23 -0500
commit7ada02c00a41f6b8e2eb3b3861bbfb4cee2c1f25 (patch)
treea35e30755124a75e8c2ea1c3c58f31adb79bf230 /SmartDeviceLink/SDLDeleteFileOperation.m
parentd96f71873fdd70e1c8139aea2e4950c59974aebd (diff)
downloadsdl_ios-7ada02c00a41f6b8e2eb3b3861bbfb4cee2c1f25.tar.gz
Add Sequential RPC Request Operation
* SDLAsynchronousRPCRequestOperation handles single RPC requests as well * Fix name of SDLAsynchronousRPCRequestOperation * SDLConnectionManagerType now can send a “regular”/“non-manager” RPC request * Add RPC Operation queue to the lifecycle manager
Diffstat (limited to 'SmartDeviceLink/SDLDeleteFileOperation.m')
-rw-r--r--SmartDeviceLink/SDLDeleteFileOperation.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLDeleteFileOperation.m b/SmartDeviceLink/SDLDeleteFileOperation.m
index 7ebecffa5..f45f3cbdd 100644
--- a/SmartDeviceLink/SDLDeleteFileOperation.m
+++ b/SmartDeviceLink/SDLDeleteFileOperation.m
@@ -48,7 +48,7 @@ NS_ASSUME_NONNULL_BEGIN
SDLDeleteFile *deleteFile = [[SDLDeleteFile alloc] initWithFileName:self.fileName];
typeof(self) weakself = self;
- [self.connectionManager sendManagerRequest:deleteFile
+ [self.connectionManager sendConnectionManagerRequest:deleteFile
withResponseHandler:^(__kindof SDLRPCRequest *request, __kindof SDLRPCResponse *response, NSError *error) {
// Pull out the parameters
SDLDeleteFileResponse *deleteFileResponse = (SDLDeleteFileResponse *)response;