cnsumner / huldra

MIT License
2 stars 2 forks source link

Wrong string in string replacement #7

Closed cnsumner closed 3 years ago

cnsumner commented 3 years ago

There is a bit of code to prevent the bot from mentioning itself when sending replies, however in one case this results in the bot replacing the self mention with the word "replace" instead of an empty string.

Simple fix. On line 47, 'replace' should be replaced with ''

https://github.com/cnsumner/huldra/blob/00a0c46f72c4a4eaee79c6666df7da95c8607b65/lib/huldra.dart#L45-L48

cnsumner commented 3 years ago

Taking this myself since I have nothing better to do.