capacitor-mobilecron 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -134,7 +134,7 @@ final class NativeJobEvaluator {
|
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
if let nextData = try? JSONSerialization.data(withJSONObject: state),
|
|
137
|
-
let nextRaw = String(nextData, encoding: .utf8) {
|
|
137
|
+
let nextRaw = String(data: nextData, encoding: .utf8) {
|
|
138
138
|
writeStateRaw(nextRaw)
|
|
139
139
|
}
|
|
140
140
|
}
|
package/package.json
CHANGED