1
0
forked from noxious/server

Small consistency changes

This commit is contained in:
2025-01-02 02:25:32 +01:00
parent f7dbf09bf5
commit 347554998a
3 changed files with 6 additions and 6 deletions

View File

@ -34,10 +34,10 @@ export default class TileUploadEvent extends BaseEvent {
await Promise.all(uploadPromises)
callback(true)
return callback(true)
} catch (error) {
this.logger.error('Error uploading tile:', error)
callback(false)
return callback(false)
}
}
}