Fix http_api nil bug

main
Bram van den Heuvel 2024-02-20 16:54:57 +01:00
parent 57c71c4406
commit fd593f1998
1 changed files with 1 additions and 1 deletions

View File

@ -41,6 +41,6 @@ end
function matrix.say(http_api)
return function(name, message)
return matrix.send(name .. ":", message)
return matrix.send(http_api, name .. ":", message)
end
end