Dasflugen 5 vuotta sitten
vanhempi
commit
2558976697
1 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  1. 2 1
      api/authorization.go

+ 2 - 1
api/authorization.go

@@ -46,7 +46,8 @@ func LoginRoute(w http.ResponseWriter, r *http.Request){
 				}
 			}
 		}
-		PrintConsole(string(entry))
+		entryJSON := json.Marshal(entry)
+		PrintConsole(entryJSON)
 		json.NewEncoder(w).Encode(userGroups)
 		return
 	}