diff --git a/src/ios/Webserver.swift b/src/ios/Webserver.swift index 907e218..c6c4712 100644 --- a/src/ios/Webserver.swift +++ b/src/ios/Webserver.swift @@ -124,6 +124,8 @@ try self.webServer.start(options:[GCDWebServerOption_AutomaticallySuspendInBackground : false, GCDWebServerOption_Port: UInt(port)]) } catch let error { print(error.localizedDescription) + self.commandDelegate!.send(CDVPluginResult(status: CDVCommandStatus_ERROR, messageAs: error.localizedDescription), callbackId: command.callbackId) + return } let pluginResult = CDVPluginResult(status: CDVCommandStatus_OK) self.commandDelegate!.send(pluginResult, callbackId: command.callbackId)