mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 20:23:49 +01:00
Fix bug
This commit is contained in:
parent
aff12ee38a
commit
3c43a7f018
@ -167,7 +167,7 @@ export const pack = (
|
||||
// (データベースの欠損などで)ファイルがデータベース上に見つからなかったとき
|
||||
if (_file == null) {
|
||||
console.warn(`in packaging driveFile: driveFile not found on database: ${_file}`);
|
||||
return null;
|
||||
return resolve(null);
|
||||
}
|
||||
|
||||
// rendered target
|
||||
|
@ -364,7 +364,7 @@ export const pack = (
|
||||
// (データベースの欠損などで)ユーザーがデータベース上に見つからなかったとき
|
||||
if (_user == null) {
|
||||
console.warn(`user not found on database: ${user}`);
|
||||
return null;
|
||||
return resolve(null);
|
||||
}
|
||||
|
||||
// Me
|
||||
|
Loading…
Reference in New Issue
Block a user