From 9208104ff79e75e1949bda3fac4f6cc2678e188d Mon Sep 17 00:00:00 2001 From: partisan Date: Sat, 18 May 2024 13:23:39 +0200 Subject: [PATCH] fix search order --- text.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/text.go b/text.go index b3a8e41..3efd27a 100644 --- a/text.go +++ b/text.go @@ -99,11 +99,11 @@ func shouldReplace(existingSource, newSource string) bool { func sourceOrder(source string) int { switch source { case "Qwant": - return 1 + return 3 case "DuckDuckGo": return 2 case "Google": - return 3 + return 1 default: return 4 }