From e0ffc51be34cc75fc7e21190a08818f51f15a1cc Mon Sep 17 00:00:00 2001 From: Jan-Lukas Else Date: Sat, 19 Oct 2019 12:20:25 +0200 Subject: [PATCH] Fix --- database.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/database.go b/database.go index 2bf35df..63dd460 100644 --- a/database.go +++ b/database.go @@ -72,9 +72,6 @@ func trackView(urlString string, ref string, ua string) { osInfo := userAgent.OSInfo() if osInfo.FullName != "" { osString = osInfo.FullName - if osInfo.Version != "" { - osString += " " + osInfo.Version - } } } _, e := db.trackingStmt.Exec(sql.Named("url", urlString), sql.Named("ref", ref), sql.Named("ua", ua), sql.Named("bot", bot), sql.Named("os", osString))