@capacitor-community/sqlite 3.3.3-4 → 3.3.3-5

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## 3.3.3-5 (2022-01-07)
2
+
3
+ ### Bug Fixes
4
+
5
+ - fix getUrl integrate "file://" in the returned url
6
+ - fix create databaselocation in iOS
7
+
1
8
  ## 3.3.3-4 (2022-01-06)
2
9
 
3
10
  ### Added Features
@@ -129,7 +129,8 @@ public class Database {
129
129
  * @return database url
130
130
  */
131
131
  public String getUrl() {
132
- return this._file.getAbsolutePath();
132
+ String url = "file://";
133
+ return url + this._file.getAbsolutePath();
133
134
  }
134
135
 
135
136
  /**