Skip to content

Commit

Permalink
fix: should fix broken tickets
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlauer-Hax committed Aug 22, 2023
1 parent 5bef02a commit 8892afb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export default class DB {
platform: userevent.source.platform,
platformVersion: userevent.source.platformVersion,
legacyUserAgent: userevent.source.legacyUserAgent,
}, String.fromCodePoint(...(location.country as string).toUpperCase().split('').map(char => 127397 + char.charCodeAt(0))) + " " + location.city + " (" + location.timezone + ")", location.timezone];
}, (location.country ? String.fromCodePoint(...(location.country as string).toUpperCase().split('').map(char => 127397 + char.charCodeAt(0))) : "") + " " + location.city + " (" + location.timezone + ")", location.timezone];
}

async saveTranscript(transcript: any) {
Expand Down

0 comments on commit 8892afb

Please sign in to comment.