misc(bible): fixing up some fums stuff

This commit is contained in:
Seaswimmer 2024-02-02 02:00:18 -05:00
parent b86707a6b4
commit e6b72e80ee
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -85,12 +85,10 @@ class Bible(commands.Cog):
raise bible.errors.ServiceUnavailable()
fums_url = "https://fums.api.bible/f3"
dId = "discord-" + str(self.bot.user.id)
sId = "discord-" + str(ctx.message.created_at.timestamp())
fums_params = {
"t": data["meta"]["fumsToken"],
"dId": dId,
"sId": sId,
"dId": self.bot.user.id,
"sId": ctx.message.created_at.timestamp(),
"uId": ctx.author.id,
}
@ -98,9 +96,9 @@ class Bible(commands.Cog):
self.logger.debug(
"_get_passage FUMS executed with a response code of: %s\nDevice ID: %s\nSession ID: %s\nUser ID: %s",
response.status,
dId,
sId,
ctx.author.id
self.bot.user.id,
ctx.message.created_at.timestamp(),
ctx.author.id,
)
return data["data"]