Skip to content
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.

Commit

Permalink
improves twitter params filename
Browse files Browse the repository at this point in the history
  • Loading branch information
Seklfreak committed Jun 15, 2019
1 parent 28161f0 commit 59eecee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ func getTwitterParamsUrls(url string) (map[string]string, error) {
matches := RegexpUrlTwitterParams.FindStringSubmatch(url)

return map[string]string{
"https://pbs.twimg.com/media/" + matches[3] + "." + matches[4] + ":orig": "",
"https://pbs.twimg.com/media/" + matches[3] + "." + matches[4] + ":orig": matches[3] + "." + matches[4],
}, nil
}

Expand Down
2 changes: 1 addition & 1 deletion vars.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

const (
VERSION = "1.36"
VERSION = "1.36.1"
DATABASE_DIR = "database"
RELEASE_URL = "https://github.com/Seklfreak/discord-image-downloader-go/releases/latest"
RELEASE_API_URL = "https://api.github.com/repos/Seklfreak/discord-image-downloader-go/releases/latest"
Expand Down

0 comments on commit 59eecee

Please sign in to comment.