Merge branch 'develop' into ls-arq

This commit is contained in:
DJ2LS 2023-11-04 14:32:33 +01:00 committed by GitHub
commit 96e5e875b8
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 total_counter = 0;
let item_array = [];
try {
if (
typeof 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];
} catch (e) {
console.log(e);
return [0, 0, item_array];
}
}
export function resetIsNewMessage(uuid, value) {