Browse Source

Prevent empty exception coredump

pull/169/head
Duke Leto 4 years ago
parent
commit
a5b3a49062
  1. 4
      src/rpc.cpp

4
src/rpc.cpp

@ -1092,8 +1092,8 @@ void RPC::checkForUpdate(bool silent) {
} }
} }
} catch (const std::exception& e) { } catch (const std::exception& e) {
// If anything at all goes wrong, just set the price to 0 and move on. // If anything at all goes wrong, move on
qDebug() << QString("Caught something nasty: ") << e.what(); qDebug() << QString("Exception checking for updates!");
} }
}); });
} }

Loading…
Cancel
Save