diff options
author | Christian Hesse <mail@eworm.de> | 2022-07-13 11:34:51 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2022-07-13 11:34:51 +0200 |
commit | 7f85e6971332f1c6f628fe04b9da7a36c59bd2d7 (patch) | |
tree | 914756174eb162850d6d27704f911cf724fa38a6 /mod | |
parent | 34ea2764695ad008fbb1ea4308160584491e7bc5 (diff) |
mod/notification-matrix: update initialization of empty array
Having the parenthesis here is important for valid syntax!
Diffstat (limited to 'mod')
-rw-r--r-- | mod/notification-matrix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/notification-matrix b/mod/notification-matrix index f905839..c4dd27b 100644 --- a/mod/notification-matrix +++ b/mod/notification-matrix @@ -129,7 +129,7 @@ $LogPrintExit2 info $0 ("Failed sending Matrix notification! Queuing...") false; :if ([ :typeof $MatrixQueue ] = "nothing") do={ - :set MatrixQueue [ :toarray "" ]; + :set MatrixQueue ({}); } :local Text ([ $SymbolForNotification "alarm-clock" ] . \ "This message was queued since " . [ /system/clock/get date ] . \ |