From ebfa9e1a72b10f15ff30329bf31697eaeb71ad5e Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 14 May 2021 20:13:31 +0200 Subject: Switched to int32 as esi scheme dictates --- esi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'esi.go') diff --git a/esi.go b/esi.go index f50eb4d..4eaa682 100644 --- a/esi.go +++ b/esi.go @@ -6,7 +6,7 @@ import ( "net/http" ) -func GetKillmail(id uint64, hash string) (EsiKillmail, error) { +func GetKillmail(id int32, hash string) (EsiKillmail, error) { r, err := http.Get(fmt.Sprintf("https://esi.evetech.net/latest/killmails/%d/%s/", id, hash)) if err != nil { return EsiKillmail{}, err -- cgit v1.1