XRevan86
XRevan86
> MessageSplit=false This is [not explained in the Wiki](https://github.com/42wim/matterbridge/wiki/Settings#messagelength) but ```MessageLength``` is only used when ```MessageSplit``` is used as well ([bridge/irc/irc.go#L169-L173](https://github.com/42wim/matterbridge/blob/v1.22.3/bridge/irc/irc.go#L169-L173)): ```go if b.GetBool("MessageSplit") { msgLines = helper.GetSubLines(msg.Text, b.MessageLength, b.GetString("MessageClipped"))...
Also if ```MessageLength``` could account for the size of the nickname as well, I think it would make things easier.
glibc 2.34+ also moved dlopen and dlsym to libc.so, so I'd imagine the solution would be something like this: ```diff --- a/src/real_dlsym.cpp +++ b/src/real_dlsym.cpp @@ -19,10 +19,17 @@ void get_real_functions()...
That's caused by ```CONFIG_YABEL_DIRECTHW=y``` being set in https://github.com/merge/skulls/commit/75792534343affd554cfda778996cdb2c8866232, not an upstream issue.
Distributions start to ditch GStreamer 0.10 in favour of GStreamer 1.x. Consider using gobject-introspection.
Duplicate of #416. At least I think it is. Anyway, #418 is for this exact issue.
``` diff --- a/sleekxmpp/xmlstream/resolver.py +++ b/sleekxmpp/xmlstream/resolver.py @@ -175,6 +175,9 @@ def get_A(host, resolver=None, use_dnspy """ log.debug("DNS: Querying %s for A records." % host) + if isinstance(host, bytes): + host =...