A link to the current thread is no longer posted at the beginning of the thread

master
Dragory 2018-02-24 13:14:40 +02:00
parent ac64e28d03
commit b2a102f82a
2 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,8 @@
# Changelog # Changelog
## v2.0.1
* The link to the current thread's log is no longer posted to the top of the thread. Use `!loglink` instead.
## v2.0.0 ## v2.0.0
* Rewrote large parts of the code to be more modular and maintainable. There may be some new bugs because of this - please report them through GitHub issues if you encounter any! * Rewrote large parts of the code to be more modular and maintainable. There may be some new bugs because of this - please report them through GitHub issues if you encounter any!
* Threads, logs, and snippets are now stored in an SQLite database. The bot will migrate old data on the first run. * Threads, logs, and snippets are now stored in an SQLite database. The bot will migrate old data on the first run.

View File

@ -85,10 +85,6 @@ async function createNewThreadForUser(user) {
disableEveryone: false disableEveryone: false
}); });
// Post the log link to the beginning (but don't save it in thread messages)
const logUrl = await newThread.getLogUrl();
await newThread.postNonLogMessage(`Log URL: <${logUrl}>`);
// Send auto-reply to the user // Send auto-reply to the user
if (config.responseMessage) { if (config.responseMessage) {
newThread.postToUser(config.responseMessage); newThread.postToUser(config.responseMessage);