Skip to content

Commit

Permalink
Fix a style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FluffyGhoster committed Jun 26, 2023
1 parent 4171a17 commit d59186c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions html/changelogs/fluffyghost-tgchat_namespace_fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ delete-after: True
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- bugfix: "The TGUI CI Linter does not like the use of var, turned it in a const declaration to make it happy."
- bugfix: "Prettified storage.js to make the linter happy."
2 changes: 1 addition & 1 deletion tgui/packages/common/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class IndexedDbBackend {
}

// Namespace for keys in storage, so we do not share storage with other servers.
const namespace = "AURORASTATION_";
const namespace = 'AURORASTATION_';

/**
* Web Storage Proxy object, which selects the best backend available
Expand Down

0 comments on commit d59186c

Please sign in to comment.