Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
rikmarais committed Jul 18, 2024
1 parent 186c6b2 commit 35d22d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets-sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,7 @@ class WorldMigration {
return localPath;
}
} else {
const asset = this.assets.get(ForgeAssetSync.sanitizePath(decodeURIComponent(name)))
const asset = this.assets.get(ForgeAssetSync.sanitizePath(decodeURIComponent(name)));
const queryString = query ? `?${query}` : "";
// Same path, not bazaar and same url.. so it's not coming from someone else's library
if (asset && `${asset.url}${queryString}` === entityPath) {
Expand Down

0 comments on commit 35d22d0

Please sign in to comment.