mirror of
https://github.com/urbanguacamole/torrent-paradise.git
synced 2022-02-03 00:44:15 +03:00
Fix uppercase infohashes
This commit is contained in:
@@ -7,6 +7,7 @@ import (
|
||||
"log"
|
||||
"os"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
"unicode/utf8"
|
||||
|
||||
@@ -62,6 +63,8 @@ func main() {
|
||||
}
|
||||
added := time.Unix(addedUnix, 0)
|
||||
|
||||
name = strings.ToLower(name)
|
||||
|
||||
//fmt.Printf("Ih %v name %v len %v added %v", infohash, name, length, added)
|
||||
_, err = db.Exec("INSERT INTO torrent (infohash, name, length, added) VALUES ($1, $2, $3, $4)", infohash, name, length, added)
|
||||
if err, ok := err.(*pq.Error); ok { //dark magic
|
||||
|
||||
Reference in New Issue
Block a user