diff --git a/lua/presence/init.lua b/lua/presence/init.lua index 1d2aefe..294739b 100644 --- a/lua/presence/init.lua +++ b/lua/presence/init.lua @@ -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