You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
updated the matrix server software (synapse) and this bot stopped working. no errors in console, it just wont do anything anymore. seems to think its connected when i boot it up, but its not online
The text was updated successfully, but these errors were encountered:
I experienced the same thing, there are no error logs, and the debug log says that it's online/connected. However, it just shows offline in Element/Matrix with absolutely zero information lol.
This might have to do with the fact that some communication URIs were removed with Synapse 1.88. I noticed that after upgrading I was unable to send messages to Discord users, nor communicate with the bot. My solution was to point the appservice registration file to a local nginx server, and then rewrite the URIs to what the bridge expected.
If it helps anyone, my Nginx config looks like this:
server {
listen 30334 default_server;
listen [::]:30334 default_server;
server_name _;
# Rewrite bridge requests from new Synapse server to old bridges
location ~ /_matrix/app/v1/transactions/(.+) {
proxy_pass http://127.0.0.1:29334/transactions/$1;
}
location / {
proxy_pass http://127.0.0.1:29334;
}
}
updated the matrix server software (synapse) and this bot stopped working. no errors in console, it just wont do anything anymore. seems to think its connected when i boot it up, but its not online
The text was updated successfully, but these errors were encountered: