summaryrefslogtreecommitdiff
path: root/public/assets/js/lib/views/stream
diff options
context:
space:
mode:
Diffstat (limited to 'public/assets/js/lib/views/stream')
-rw-r--r--public/assets/js/lib/views/stream/hootstream.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/assets/js/lib/views/stream/hootstream.js b/public/assets/js/lib/views/stream/hootstream.js
index f4e48c4..016c987 100644
--- a/public/assets/js/lib/views/stream/hootstream.js
+++ b/public/assets/js/lib/views/stream/hootstream.js
@@ -109,7 +109,7 @@ var HootStream = View.extend({
file_count: `${files.length || 0} f.`,
file_opacity: age_opacity * get_size_opacity(files.length),
comment_count: `${comments.length || 0} c.`,
- comment_opacity: age_opacity * get_size_opacity(files.length),
+ comment_opacity: age_opacity * get_size_opacity(comments.length),
}),
this.renderFiles(postedToday ? files : files.slice(0, 10)),
...this.renderHoots({ hoots: comments.slice(0, 1), tag: "first_post" }),