summaryrefslogtreecommitdiff
path: root/graffiti.js
diff options
context:
space:
mode:
Diffstat (limited to 'graffiti.js')
-rw-r--r--graffiti.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/graffiti.js b/graffiti.js
index 1b3365e..94e1ebe 100644
--- a/graffiti.js
+++ b/graffiti.js
@@ -52,7 +52,7 @@ export default class {
async request(msg) {
// Create a random message ID
- const messageID = Auth.randomString()
+ const messageID = crypto.randomUUID()
// Create a listener for the reply
const dataPromise = new Promise(resolve => {
@@ -149,7 +149,7 @@ export default class {
queryID=null) {
// Create a random query ID
- if (!queryID) queryID = Auth.randomString()
+ if (!queryID) queryID = crypto.randomUUID()
// Send the request
await this.request({
@@ -209,7 +209,7 @@ export default class {
}
// Pre-generate the object's ID if it does not already exist
- if (!object._id) object._id = Auth.randomString()
+ if (!object._id) object._id = crypto.randomUUID()
}
// Utility function to get a universally unique string