File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ Changelog
44Unreleased
55------------------
66
7+ - Fix: [iOS] When there are no keys associated with a store, return empty string instead of `nil`.
8+
792.6.8-OS14 - 2022-11-09
810------------------
911
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ extension SecureStorage: PlatformProtocol {
132132 ]
133133 pluginResult = CDVPluginResult ( status: CDVCommandStatus_ERROR, messageAs: errorDict) ;
134134 } else if let result = result {
135- pluginResult = result . isEmpty ? CDVPluginResult ( status : CDVCommandStatus_OK ) : CDVPluginResult ( status: CDVCommandStatus_OK, messageAs: result)
135+ pluginResult = CDVPluginResult ( status: CDVCommandStatus_OK, messageAs: result)
136136 }
137137
138138 self . commandDelegate. send ( pluginResult, callbackId: callBackID) ;
You can’t perform that action at this time.
0 commit comments