Add debug logging for unknown error
This commit is contained in:
parent
0c7ab319e7
commit
f9123e8a04
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "immich-public-proxy",
|
||||
"version": "1.4.3",
|
||||
"version": "1.4.4",
|
||||
"scripts": {
|
||||
"dev": "ts-node src/index.ts",
|
||||
"build": "npx tsc",
|
||||
|
@ -163,6 +163,11 @@ class Immich {
|
||||
}
|
||||
// Otherwise return failure
|
||||
log('Immich response ' + res.status + ' for key ' + key)
|
||||
try {
|
||||
console.log((await res.text()).slice(0, 500))
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
return {
|
||||
valid: false
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user