From f424633083132b60a02a754de68647ec8bc55026 Mon Sep 17 00:00:00 2001 From: Greg Salaun Date: Tue, 1 Oct 2024 11:33:11 +0700 Subject: [PATCH] up --- config.yml | 2 +- main.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config.yml b/config.yml index 95b510b..d059ae6 100644 --- a/config.yml +++ b/config.yml @@ -7,4 +7,4 @@ cluster: call: XV9Q log: - sqlitePath: "C:\Perso\Seafile\Radio\Logs\Log4OM\Vietnam.SQLite" \ No newline at end of file + sqlitePath: "C:\\Perso\\Seafile\\Radio\\Logs\\Log4OM\\Vietnam.SQLite" \ No newline at end of file diff --git a/main.go b/main.go index 5881209..cab2610 100644 --- a/main.go +++ b/main.go @@ -151,8 +151,8 @@ func sendTelnetMessage(conn net.Conn, message string) { func sendFilters(conn net.Conn) { go sendTelnetMessage(conn, "set/ft8") time.Sleep(1 * time.Second) - //go sendTelnetMessage(conn, "SET/FILTER DOC/PASS 3W") - //time.Sleep(1 * time.Second) + go sendTelnetMessage(conn, "SET/FILTER DOC/PASS 3W") + time.Sleep(1 * time.Second) go sendTelnetMessage(conn, "set/skimmer") time.Sleep(1 * time.Second) go sendTelnetMessage(conn, "set/ft4") @@ -210,7 +210,7 @@ func main() { // Send Call to ID to the Server if message != "" && strings.Contains("Please enter your call:", message) { - go sendTelnetMessage(conn, "XV9Q-5") + go sendTelnetMessage(conn, "XV9Q-3") login = true }