From f1c904eabefe40f3b64834b0536b328bc3ba77dc Mon Sep 17 00:00:00 2001 From: Lain Iwakura Date: Sat, 12 Jul 2025 14:36:05 +0300 Subject: [PATCH] update --- main.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main.go b/main.go index 5658815..e5a086b 100644 --- a/main.go +++ b/main.go @@ -95,6 +95,12 @@ func wsHandler(w http.ResponseWriter, r *http.Request) { } else if buffer == "reddit" { conn.WriteJSON(map[string]string{"action": "redirect", "url": "https://www.reddit.com/r/openbsd/s/zxEkMj0uaW"}) buffer = "" + } else if buffer == "intelme" { + conn.WriteJSON(map[string]string{"action": "show_message", "message": "Everything must be free, without tracking"}) + buffer = "" + } else if buffer == "amdpsp" { + conn.WriteJSON(map[string]string{"action": "show_message", "message": "Everything must be free, without tracking"}) + buffer = "" } } }