| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
Fixes #1869
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes #2021
* Fix broken reply
* Fix reply/quoting logic with topics
* Update handlers.go
---------
Co-authored-by: Wim <wim@42.be>
|
|
|
| |
Resolves #1975
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Topics are surfaced by appending /<topic-id> to the channel setting for the gateway.
An example for the topic with ID of 16 would be:
```
[[gateway.inout]]
account="telegram.mytelegram"
channel="-100xxxxxxxxxx/16"
```
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
Also update to latest melody upstream
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Rename .{jfif,jpe} to .jpg (mumble)
* Fix messages not sending in properly if no limit is set (mumble)
Co-authored-by: yellows111 <ice_ice@email.com>
* Formatting fix (mumble)
---------
Co-authored-by: yellows111 <ice_ice@email.com>
|
| |
|
| |
|
|
|
|
|
| |
single account (whatsapp) (#1998)
Resolves #1844
|
|
|
|
|
| |
This comes in handy for annoucement type channels where neither the SenderChat or From structs contain name information.
Also Tweak username logic as when using a full name the username field can be " " instead of "".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Handle Whatsapp threading/replies.
In this change we are updating whatsapp message IDs to include sender JID as this is necessary to reply to a message
https://github.com/tulir/whatsmeow/issues/88#issuecomment-1093195237
https://github.com/tulir/whatsmeow/discussions/148#discussioncomment-3094325
Based on commit 6afa93e537c53b371db37f35a3546ff0fb669416 from #1934
Author: Iiro Laiho <iiro.laiho@iki.fi>
* Fix replies.
Sender JID can have a `:` inside of it, using `/` as a delimiter now.
Added messageID parser + struct.
messages sent with an attachment do not show replies
But at least common `sendMessage` will make repies from whatsapp to an attachement bridge across.
The new message ID format broke message deleting, so we change the messageID into the real id at the beginning of send.
We really do need the extra info for when we reply to a message though.
* Refactored message replies.
file/Image/audio/replies all work now.
|
|
|
| |
resolves #1967
|
|
|
| |
Resolves #1840
|
|
|
|
| |
This should fix #1906 as we don't have any cgo dependencies anymore by
default.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Apply patch to work around the "Someone" nickname problem
* Code cleanup (whatsapp)
* Cleanup
* Code cleanup (whatsapp)
* Re-examine if sender exists
* Cleanup (whatsapp)
|
| |
|
|
|
|
|
|
|
| |
* Allow captions for document attachments, too
* Handle audio messages
* Improve attachment handling
|
|
|
|
|
| |
* mumble: Implement sending of EventJoinLeave both to and from Mumble (Closes #1435)
* mumble: Break handleUserChange into two functions
|
|
|
|
|
|
|
| |
* Allow substitution of bot's nick in RunCommands
* Tweak description of "{BOTNICK}"
Made the description of "{BOTNICK}" consistent with that of other keywords
|
| |
|
| |
|
|
|
|
|
| |
* Matrix username spoofing
* Add config sample
|
|
|
|
|
| |
* Update dependencies
* Fix whatsmau API changes
|
|
|
|
|
|
|
| |
* Fix message html entities escaping when sending to Telegram
* Fix error messages in telegram and slack bridges
Co-authored-by: Wim <wim@42.be>
|
| |
|
|
|
|
| |
Mattermost api (almost) didn't change between v6.7.x and v7.0
Everything should just work
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* discord: add nosendjoinpart support
This allows the discord bridge to be configured with `nosendjoinpart`,
preventing discord-originating join/part messages from being send to
other bridged platforms.
* discord: Ignore incoming events for other guilds
Ignore all incoming discord events originating from Guild IDs other than
the one we have configured.
This is necessary because discord bots receive events for *all* discord
guilds that they are present in.
Fixes #1612
|
|
|
|
|
|
|
|
| |
* Improve Slack attachments formatting (slack)
* Add TitleLink
* Add Footer
* Fix linter issues
|
|
|
|
|
|
|
|
|
|
|
|
| |
Matrix quotes replies and as of matterbridge 1.24.0 we strip those as this causes
issues with bridges support threading and have PreserveThreading enabled.
Introduced via https://github.com/42wim/matterbridge/commit/9a8ce9b17e560433731eb5efa3cee7ced0b93605
But if you for example use mattermost or discord with webhooks you'll need to enable
this if you want something that looks like a reply from matrix.
See issues:
- https://github.com/42wim/matterbridge/issues/1819
- https://github.com/42wim/matterbridge/issues/1780
|
| |
|
|
|
|
|
|
| |
This reverts commit f044b948e257814e8e1f70d4b66821bfd9c2ff06.
Fixes #1815
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
handleEntities code uses simple modification offset which does not
allow to detect whether the offset is placed before or after
the element in already modified string.
This works fine is most cases as Telegram server always sort the
elements by offset, in ascending order.
However, this is not the case when the modification, for example bold
text, is applied to the URL. In this case, the offset of URL and
bold entity is equal, which raises the issue.
This commit introduces additional hack for this case, stripping
any entities which intersect with URL.
|
| |
|
|
|
|
|
|
|
| |
Clear all existing IRC event handler registrations before registering
new handlers in case we are connecting via a BNC and are seeing
a reconnect.
Fixes #1564
|
| |
|
|
|
|
|
|
|
|
| |
Sorta regression introduced by 9a8ce9b17e560433731eb5efa3cee7ced0b93605
which changes the way we get replies of matrix.
This causes issues like https://github.com/42wim/matterbridge/issues/1780
We "fix" this by mimicking the old behaviour when "PreserveThreading" is
disabled.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Send multiple images/video/documents as media group
* Fix media caption quotting
* Fix errors handling
* Refactor parent id detection
* Try to reduce cognitive complexity of code
* Remove unused conditional
|
|
|
|
|
|
|
| |
* Preserve threading for slack messages with files
* Update bridge/slack/slack.go
Co-authored-by: Wim <wim@42.be>
|
|
|
|
|
| |
* Use slack real name as user name
* Change slack option UseRealName to UseFullName
|
|
|
|
|
|
|
| |
* Preserve threading from telegram replies
* Add fallback for unthreaded telegram message
* Fix linter issue
|