Update to make linter happy

This commit is contained in:
Andrew Kennedy 2021-08-13 00:36:30 -07:00 committed by GitHub
parent 9aeef01a1b
commit e79738c2dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -240,8 +240,8 @@ export default {
return `${baseURL}/api/public/dl/${path}${queryArg}`;
},
inlineLink: function () {
url = new URL(this.link);
url.searchParams.set('inline', 'true');
let url = new URL(this.link);
url.searchParams.set("inline", "true");
return url.href;
},
fullLink: function () {