mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-20 18:09:59 -04:00
Fix unzip crash
This commit is contained in:
parent
33e12646b8
commit
1145426402
1 changed files with 3 additions and 1 deletions
|
@ -355,7 +355,9 @@ public:
|
|||
else {
|
||||
GEODE_UNWRAP(this->extractAt(dir, filePath));
|
||||
}
|
||||
m_progressCallback(currentEntry, numEntries);
|
||||
if (m_progressCallback) {
|
||||
m_progressCallback(currentEntry, numEntries);
|
||||
}
|
||||
}
|
||||
else {
|
||||
log::error(
|
||||
|
|
Loading…
Reference in a new issue