Compare commits

..

No commits in common. "21e256c4fb4758b44119b605ee7c078104774b98" and "d1c0ed2e1443f72d9b15e041990c96215db578b1" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View file

@ -88,16 +88,15 @@ class Bible(commands.Cog):
"t": data["meta"]["fumsToken"], "t": data["meta"]["fumsToken"],
"dId": self.bot.user.id, "dId": self.bot.user.id,
"sId": ctx.message.created_at.timestamp(), "sId": ctx.message.created_at.timestamp(),
"uId": hash(ctx.author.id), "uId": ctx.author.id,
} }
async with self.session.get(fums_url, params=fums_params) as response: async with self.session.get(fums_url, params=fums_params) as response:
self.logger.debug( self.logger.debug(
"_get_passage FUMS executed with a response code of: %s\nDevice ID: %s\nSession ID: %s\nUser ID: %s (%s)", "_get_passage FUMS executed with a response code of: %s\nDevice ID: %s\nSession ID: %s\nUser ID: %s",
response.status, response.status,
self.bot.user.id, self.bot.user.id,
ctx.message.created_at.timestamp(), ctx.message.created_at.timestamp(),
hash(ctx.author.id),
ctx.author.id, ctx.author.id,
) )
return data["data"] return data["data"]

View file

@ -4,7 +4,7 @@
"name" : "Bible", "name" : "Bible",
"short" : "Retrieve Bible verses from API.Bible.", "short" : "Retrieve Bible verses from API.Bible.",
"description" : "Retrieve Bible verses from the API.Bible API. This cog requires an API.Bible api key.", "description" : "Retrieve Bible verses from the API.Bible API. This cog requires an API.Bible api key.",
"end_user_data_statement" : "This cog does not store end user data, however it does send the following data to the API.Bible API:\n- The bot user's ID\n- The timestamp of the invoking message\n- The hashed user id of the invoking user", "end_user_data_statement" : "This cog does not store end user data.",
"hidden": false, "hidden": false,
"disabled": false, "disabled": false,
"min_bot_version": "3.5.0", "min_bot_version": "3.5.0",