mirror of
https://github.com/glanceapp/glance.git
synced 2025-06-22 02:41:23 +02:00
Move engagement calculation inside widget
This commit is contained in:
parent
0fbc8dcb41
commit
aef0c84286
@ -110,7 +110,5 @@ func FetchSubredditPosts(subreddit, sort, topPeriod, search, commentsUrlTemplate
|
|||||||
posts = append(posts, forumPost)
|
posts = append(posts, forumPost)
|
||||||
}
|
}
|
||||||
|
|
||||||
posts.CalculateEngagement()
|
|
||||||
|
|
||||||
return posts, nil
|
return posts, nil
|
||||||
}
|
}
|
||||||
|
@ -95,6 +95,7 @@ func (widget *Reddit) Update(ctx context.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if widget.ExtraSortBy == "engagement" {
|
if widget.ExtraSortBy == "engagement" {
|
||||||
|
posts.CalculateEngagement()
|
||||||
posts.SortByEngagement()
|
posts.SortByEngagement()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user