1
0
Fork 0
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:
Taken 2023-06-24 21:52:13 +02:00
parent 87c857a56b
commit 3c22ea345a
No known key found for this signature in database
GPG key ID: 40A0E01D074A2166

View file

@ -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