force user initialisation - fixes #2

This commit is contained in:
Michael Dausmann
2023-04-07 23:28:13 +10:00
parent 59d9d0f684
commit b4b20e4260
5 changed files with 14 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ export class UtilService {
return String(error)
}
public static circleSafeStringify(obj: any) {
public static stringifySafely(obj: any) {
let cache: any[] = [];
let str = JSON.stringify(obj, function(key, value) {
if (typeof value === "object" && value !== null) {