misc(bible): fixing up some fums stuff
This commit is contained in:
parent
b86707a6b4
commit
e6b72e80ee
1 changed files with 5 additions and 7 deletions
|
@ -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"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue