summary refs log tree commit diff stats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 9541176..b837d47 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -90,7 +90,7 @@ fn list_matches(db: &db::Conn) {
     });
 
     for (i, e) in postvec.iter().enumerate() {
-        if (postvec.len() >= 30 && i >= postvec.len() - 31) || postvec.len() < 30 {
+        if (postvec.len() > 14 && i >= postvec.len() - 15) || postvec.len() < 15 {
             print!("{}", e);
         }
     }