From 92e3e0ef6edf8717126911fc6c835050137fcbb6 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sat, 12 Nov 2022 14:31:45 -0600 Subject: [PATCH] Update collection id prefix --- server/objects/Collection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/objects/Collection.js b/server/objects/Collection.js index 97a8ce37..cab8348d 100644 --- a/server/objects/Collection.js +++ b/server/objects/Collection.js @@ -63,7 +63,7 @@ class Collection { if (!data.userId || !data.libraryId || !data.name) { return false } - this.id = getId('usr') + this.id = getId('col') this.userId = data.userId this.libraryId = data.libraryId this.name = data.name