mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2026-06-18 14:51:03 +00:00
fixed bug if new apps were added to GFE, they wouldn't appear in moonlight, and JS would get sad
This commit is contained in:
+1
-1
@@ -183,7 +183,7 @@ NvHTTP.prototype = {
|
|||||||
chrome.storage.local.get('boxArtCache', function(JSONCachedBoxArtArray) {
|
chrome.storage.local.get('boxArtCache', function(JSONCachedBoxArtArray) {
|
||||||
|
|
||||||
var storedBoxArtArray; // load cached data if it exists
|
var storedBoxArtArray; // load cached data if it exists
|
||||||
if (JSONCachedBoxArtArray.boxArtCache != undefined) {
|
if (JSONCachedBoxArtArray.boxArtCache != undefined && JSONCachedBoxArtArray.boxArtCache[appId] != undefined) {
|
||||||
storedBoxArtArray = JSONCachedBoxArtArray.boxArtCache;
|
storedBoxArtArray = JSONCachedBoxArtArray.boxArtCache;
|
||||||
|
|
||||||
storedBoxArtArray[appId] = _base64ToArrayBuffer(storedBoxArtArray[appId]);
|
storedBoxArtArray[appId] = _base64ToArrayBuffer(storedBoxArtArray[appId]);
|
||||||
|
|||||||
Reference in New Issue
Block a user