diff --git a/push_to_db.py b/push_to_db.py
index 8435b8459c052f0d2dd1d09e8c3ebcbbf31525af..c7b19b19d5569f9322ad5d3a0a42d4772f782a2d 100644
--- a/push_to_db.py
+++ b/push_to_db.py
@@ -18,7 +18,7 @@ from datetime import datetime, timedelta
 def check_similarity(_conn, name, part_type):
     _cursor = _conn.cursor()
     where_clause = "WHERE type = '{}'".format(part_type.upper()) if part_type else ""
-    _auto_threshold = 1.0 if part_type in ('RAM', 'SSD', 'HDD',) else 0.13
+    _auto_threshold = 1.0 if part_type in ('RAM', 'SSD', 'HDD',) else 0.5
 
     _cursor.execute("WITH comp AS (SELECT id, name, similarity(name::text, %s::text) as sim FROM parts " + where_clause + ") SELECT * FROM comp WHERE sim >=%s ORDER BY sim DESC LIMIT 5;", (name, _auto_threshold,))