mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fixed compilation warning on tests (#2317)
QByteArray append deprecation fix
This commit is contained in:
parent
75b1ef06e2
commit
22d6aa8dc3
|
@ -39,7 +39,7 @@ QString NetworkData::getHash()
|
||||||
{
|
{
|
||||||
QByteArray bytes;
|
QByteArray bytes;
|
||||||
|
|
||||||
bytes.append(this->request_.url().toString());
|
bytes.append(this->request_.url().toString().toUtf8());
|
||||||
|
|
||||||
for (const auto &header : this->request_.rawHeaderList())
|
for (const auto &header : this->request_.rawHeaderList())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue