Merge pull request #528 from DJ2LS/chat-hotfix

partially fix for chat not opening
This commit is contained in:
DJ2LS 2023-11-03 22:41:59 +01:00 committed by GitHub
commit 026f78eb82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -452,6 +452,7 @@ export function getNewMessagesByDXCallsign(dxcallsign): [number, number, any] {
let new_counter = 0; let new_counter = 0;
let total_counter = 0; let total_counter = 0;
let item_array = []; let item_array = [];
try {
if ( if (
typeof dxcallsign !== "undefined" && typeof dxcallsign !== "undefined" &&
typeof chat.sorted_chat_list[dxcallsign] !== "undefined" typeof chat.sorted_chat_list[dxcallsign] !== "undefined"
@ -468,6 +469,10 @@ export function getNewMessagesByDXCallsign(dxcallsign): [number, number, any] {
} }
return [total_counter, new_counter, item_array]; return [total_counter, new_counter, item_array];
} catch (e) {
console.log(e);
return [0, 0, item_array];
}
} }
export function resetIsNewMessage(uuid, value) { export function resetIsNewMessage(uuid, value) {