mirror of
https://github.com/sigmasternchen/threadule
synced 2025-03-15 08:09:01 +00:00
fix: i forgot one uncheck error log
This commit is contained in:
parent
48cd194d04
commit
3386af5533
1 changed files with 3 additions and 1 deletions
|
@ -114,7 +114,9 @@ func (l *Logic) sendThread(thread *models.Thread) {
|
|||
|
||||
thread.Status = models.ThreadDone
|
||||
err = l.ctx.Data.UpdateThreadWithoutTweets(thread)
|
||||
l.ctx.Log.Errorf("couldn't update thread in DB: %v", err)
|
||||
if err != nil {
|
||||
l.ctx.Log.Errorf("couldn't update thread in DB: %v", err)
|
||||
}
|
||||
}
|
||||
|
||||
func (l *Logic) scheduleTriggerTwitter() {
|
||||
|
|
Loading…
Reference in a new issue