Revert "Google Reader API: Fix incorrect ParseInt"

This reverts commit 071e9106a8.
This commit is contained in:
Frédéric Guillot 2022-08-03 18:16:20 -07:00
parent aefadfeed4
commit 3eb3ac06b6
1 changed files with 1 additions and 1 deletions

View File

@ -357,7 +357,7 @@ func getItemIDs(r *http.Request) ([]int64, error) {
var itemID int64
_, err := fmt.Sscanf(item, EntryIDLong, &itemID)
if err != nil {
itemID, err = strconv.ParseInt(item, 10, 64)
itemID, err = strconv.ParseInt(item, 16, 64)
if err != nil {
return nil, fmt.Errorf("could not parse item: %v", item)
}