You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Fix unicode invalid skip error in AssetLib
(cherry picked from commit 0caaaf4018)
This commit is contained in:
committed by
Rémi Verschelde
parent
cca999c007
commit
859dba0dd6
@@ -691,10 +691,12 @@ PoolByteArray HTTPClient::read_response_body_chunk() {
|
|||||||
body_left -= rec;
|
body_left -= rec;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (err != OK)
|
if (err != OK) {
|
||||||
|
ret.resize(_offset);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (err != OK) {
|
if (err != OK) {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user