chore: remove console logs
This commit is contained in:
parent
0e5a3d75e3
commit
439978a5b5
1 changed files with 0 additions and 2 deletions
|
|
@ -27,9 +27,7 @@ chrome.storage.sync.get(['PolyPlus_Settings'], async function (result) {
|
||||||
|
|
||||||
if (Settings.StoreOwnTagOn === true) {
|
if (Settings.StoreOwnTagOn === true) {
|
||||||
chrome.storage.local.get('PolyPlus_InventoryCache', async function(result){
|
chrome.storage.local.get('PolyPlus_InventoryCache', async function(result){
|
||||||
console.log(result)
|
|
||||||
if (result.PolyPlus_InventoryCache !== undefined && (new Date().getTime() - result.PolyPlus_InventoryCache.requested < 30000)) {
|
if (result.PolyPlus_InventoryCache !== undefined && (new Date().getTime() - result.PolyPlus_InventoryCache.requested < 30000)) {
|
||||||
console.log('not undefined')
|
|
||||||
Inventory = result.PolyPlus_InventoryCache.data
|
Inventory = result.PolyPlus_InventoryCache.data
|
||||||
Array.from(ItemGrid.children).forEach((element) => {
|
Array.from(ItemGrid.children).forEach((element) => {
|
||||||
LoadOwnedTags(element);
|
LoadOwnedTags(element);
|
||||||
|
|
|
||||||
Reference in a new issue