diff --git a/cmd/eksterd/timeline.go b/cmd/eksterd/timeline.go index 92ca2d3..2fff6ca 100644 --- a/cmd/eksterd/timeline.go +++ b/cmd/eksterd/timeline.go @@ -34,7 +34,7 @@ type redisStreamTimeline struct { func (b *memoryBackend) getTimeline(channel string) TimelineBackend { // TODO: fetch timeline type from channel timelineType := "sorted-set" - if channel == "notifications" || channel == "tweets" { + if channel == "notifications" { timelineType = "stream" } if timelineType == "sorted-set" {