Merge pull request from mempool/nymkappa/bugfix/liquid-icon

This commit is contained in:
wiz 2022-04-15 05:02:54 +00:00 committed by GitHub
commit 653ce3e40c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -111,7 +111,11 @@ class Server {
}
if (Common.isLiquid()) {
icons.loadIcons();
try {
icons.loadIcons();
} catch (e) {
logger.err('Cannot load liquid icons. Ignoring. Reason: ' + (e instanceof Error ? e.message : e));
}
}
fiatConversion.startService();