mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 03:34:47 +00:00
.
This commit is contained in:
parent
028e3e0af9
commit
f02e39593f
@ -469,13 +469,13 @@ window.eaglercraftXOpts = {
|
||||
const data = storage.local.get('eaglercraftXData');
|
||||
switch (key) {
|
||||
case 'p':
|
||||
return data.profile ? data.profile : null;
|
||||
return data?.profile ? data?.profile : null;
|
||||
case 'g':
|
||||
return data.settings ? data.settings : null;
|
||||
return data?.settings ? data?.settings : null;
|
||||
case 's':
|
||||
return data.servers ? data.servers : null;
|
||||
return data?.servers ? data?.servers : null;
|
||||
case 'r':
|
||||
return data.relays ? data.relays : null;
|
||||
return data?.relays ? data?.relays : null;
|
||||
}
|
||||
},
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user