Browse Source

Fix bug in uploading collection, apiKey missing ?

q-apps
Justin Ferrari 2 years ago
parent
commit
14c52e3ce4
  1. 2
      qortal-ui-plugins/plugins/core/components/ChatGifs/ChatGifs.js

2
qortal-ui-plugins/plugins/core/components/ChatGifs/ChatGifs.js

@ -496,7 +496,7 @@ setOpenGifModal: { attribute: false }
let myCollection = await parentEpml.request(
'apiCall',
{
url: `/arbitrary/metadata/GIF_REPOSITORY/${userName}/${this.newCollectionName}&apiKey=${this.getApiKey()}`,
url: `/arbitrary/metadata/GIF_REPOSITORY/${userName}/${this.newCollectionName}?apiKey=${this.getApiKey()}`,
}
);
if (myCollection.title) {

Loading…
Cancel
Save