Fix compilation with GCC 8 (#6053)

This commit is contained in:
Chocobozzz 2018-05-13 19:02:33 +02:00 committed by John Maguire
parent 37912a87b8
commit 5bd2c77c58

View File

@ -221,7 +221,7 @@ bool SpotifyBlobDownloader::CheckSignature(
return false;
}
}
} catch (std::exception e) {
} catch (std::exception& e) {
// This should only happen if we fail to parse our own key.
qLog(Debug) << "Verifying spotify blob signature failed:" << e.what();
return false;