1
0
mirror of https://github.com/immich-app/immich.git synced 2025-08-08 23:07:06 +02:00

chore(server): patch dart openapi assertion (#2914)

* chore(server): patch dart openapi assertion

* remove unused file
This commit is contained in:
Alex
2023-06-22 12:48:57 -05:00
committed by GitHub
parent 3e2f335a4c
commit 4311d385fc
93 changed files with 103 additions and 94 deletions

View File

@ -49,7 +49,7 @@ class AssetBulkUploadCheckDto {
assert(() {
requiredKeys.forEach((key) {
assert(json.containsKey(key), 'Required key "AssetBulkUploadCheckDto[$key]" is missing from JSON.');
assert(json[key] != null, 'Required key "AssetBulkUploadCheckDto[$key]" has a null value in JSON.');
// assert(json[key] != null, 'Required key "AssetBulkUploadCheckDto[$key]" has a null value in JSON.');
});
return true;
}());