diff options
| author | Salanto <support@salanto.de> | 2021-05-12 01:56:33 +0200 |
|---|---|---|
| committer | Salanto <support@salanto.de> | 2021-05-12 01:56:33 +0200 |
| commit | c056182ba0dfa0097ad2a0026fdb8a0b707867b7 (patch) | |
| tree | fe4651dadec681492f3b8f1883b47176b0765f1b | |
| parent | b8b6d3cbb32801fed87052e60fce73ea24cc684d (diff) | |
| parent | 8fc75f29a7888a6db5db641421b0020ed561406e (diff) | |
Merge branch 'add-asset-packet' into asset-packet-musiclist
| -rw-r--r-- | src/packet_distribution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/packet_distribution.cpp b/src/packet_distribution.cpp index 28607207..dfe28f40 100644 --- a/src/packet_distribution.cpp +++ b/src/packet_distribution.cpp @@ -705,7 +705,7 @@ void AOApplication::server_packet_received(AOPacket *p_packet) //AssetURL Packet else if (header == "ASS") { - if (f_contents.size() > 1) { // This can never be more than one link. + if (f_contents.size() > 1 || f_contents.size() == 0) { // This can never be more than one link. goto end; } QUrl t_asset_url = QUrl::fromPercentEncoding(f_contents.at(0).toUtf8()); |
