mirror of
https://github.com/jiriks74/presence.nvim
synced 2025-04-05 12:03:00 +02:00
Adding nil protection for response
This commit is contained in:
parent
87c857a56b
commit
3c22ea345a
1 changed files with 6 additions and 1 deletions
|
@ -355,7 +355,12 @@ function Presence:authorize(on_done)
|
|||
return
|
||||
end
|
||||
|
||||
self.log:info(string.format("Authorized with Discord for %s", response.data.user.username))
|
||||
if not response then
|
||||
self.log:info(string.format("Authorized with Discord for %s", "Response was nil"))
|
||||
else
|
||||
self.log:info(string.format("Authorized with Discord for %s", response.data.user.username))
|
||||
end
|
||||
|
||||
self.is_authorized = true
|
||||
|
||||
if on_done then on_done() end
|
||||
|
|
Loading…
Reference in a new issue