diff options
author | 2021-08-15 18:43:08 +0200 | |
---|---|---|
committer | 2021-08-15 18:43:08 +0200 | |
commit | ff406be68f0fe6fc0b2dae9a091ce164ac039b3f (patch) | |
tree | 622473ad500239f890b116f8bd30164b92a7dfc5 /internal/processing/processor.go | |
parent | Don't run tests+lint on merge to main (#139) (diff) | |
download | gotosocial-ff406be68f0fe6fc0b2dae9a091ce164ac039b3f.tar.xz |
Timeline loop fix (#140)
* uwu we made a fucky wucky
* uwu we made a fucky wucky
* work on timeline fixes a little
* fiddle with tests some more
* bleep bloop more tests
* more tests
* update drone yml
* update some sturf
* make the timeline code a bit lazier
* go fmt
* fix drone.yml
Diffstat (limited to 'internal/processing/processor.go')
-rw-r--r-- | internal/processing/processor.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/processor.go b/internal/processing/processor.go index 16f9ac2a3..48ed2a35f 100644 --- a/internal/processing/processor.go +++ b/internal/processing/processor.go @@ -304,7 +304,7 @@ func (p *processor) Start() error { } } }() - return p.initTimelines() + return nil } // Stop stops the processor cleanly, finishing handling any remaining messages before closing down. |