mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-27 12:57:50 +02:00
Fix exceptions referenced in #1287
This commit is contained in:
@ -283,8 +283,8 @@ private:
|
||||
flog::info("Connected to server");
|
||||
}
|
||||
}
|
||||
catch (std::exception e) {
|
||||
flog::error("Could not connect to spyserver {0}", e.what());
|
||||
catch (const std::exception& e) {
|
||||
flog::error("Could not connect to spyserver {}", e.what());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user