A link to the current thread is no longer posted at the beginning of the thread
parent
ac64e28d03
commit
b2a102f82a
|
@ -1,5 +1,8 @@
|
|||
# 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
|
||||
* 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.
|
||||
|
|
|
@ -85,10 +85,6 @@ async function createNewThreadForUser(user) {
|
|||
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
|
||||
if (config.responseMessage) {
|
||||
newThread.postToUser(config.responseMessage);
|
||||
|
|
Loading…
Reference in New Issue