Skip to content

Commit 533dfb6

Browse files
authored
Merge pull request #2 from tigillo/auth-error-link
Fix for login error url - closes #1
2 parents cf365ca + 4a302f4 commit 533dfb6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

linkedin/commands/login.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def do_GET(self):
2020
description = parsed_query[1][1]
2121
logger.error(description)
2222
self.send_response(307)
23-
self.send_header('Location','https://tigillo.com/error?error=' + query_value + '&description='+description)
23+
self.send_header('Location','https://linkedin-cli.tigillo.com/error?error=' + query_value + '&description='+description)
2424
elif query_key == "code":
2525
logger.debug("Authorization allowed")
2626
logger.debug("Authorization code:" + query_value)

linkedin/resources/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '0.1.1'
1+
VERSION = '0.1.3'

0 commit comments

Comments
 (0)