Fix missing comma

This commit is contained in:
Eliot Whalan 2016-06-19 16:50:00 +10:00
parent 03ef450699
commit 72bd56e8d8
No known key found for this signature in database
GPG Key ID: C0A42175139840D6
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ func save(raw []byte) []string {
err := query.Scan(&id, &hash, &paste, &delkey)
check(err)
if hash == sha {
return []string{id, hash, url paste, delkey}
return []string{id, hash, url, paste, delkey}
}
}
id := generateName()