antprotocol-websdk 1.0.2 → 1.0.3
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10054,7 +10054,7 @@ class ProtocolBasic {
|
|
|
10054
10054
|
request.onupgradeneeded = (event) => {
|
|
10055
10055
|
const db = event.target.result;
|
|
10056
10056
|
if (!db.objectStoreNames.contains("protocols")) {
|
|
10057
|
-
db.createObjectStore("protocols"
|
|
10057
|
+
db.createObjectStore("protocols");
|
|
10058
10058
|
}
|
|
10059
10059
|
};
|
|
10060
10060
|
request.onsuccess = (event) => {
|