Skip to content

Commit

Permalink
Fixed bug on send message because of missing translation var
Browse files Browse the repository at this point in the history
  • Loading branch information
f-r00t committed Nov 20, 2023
1 parent ea3af39 commit 9aa913c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HuginUtilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ export async function sendMessage(message, receiver, messageKey, silent=false) {

if (result.success) {
if (message.substring(0,1) == 'Δ' || message.substring(0,1) == 'Λ') {
message = t('Call started');
message = 'Call started';
}
if (message.substring(0,1) == 'δ' || message.substring(0,1) == 'λ') {
message = 'Call answered';
Expand Down

0 comments on commit 9aa913c

Please sign in to comment.