fix: trim error

This commit is contained in:
reito
2024-11-19 23:49:38 +08:00
parent 17a6076732
commit 9f1fd2c8af

View File

@@ -1067,7 +1067,7 @@ export class DatabaseUI extends DisposableObject {
failures.push(entry[0]); failures.push(entry[0]);
} }
} catch (e) { } catch (e) {
failures.push(`${entry[0]}: ${getErrorMessage(e)}`); failures.push(`${entry[0]}: ${getErrorMessage(e)}`.trim());
} }
} }