Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the sub_rosa fix. #586

Merged
merged 1 commit into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/agimus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: agimus
description: A helm chart for a discord bot that also runs a mysql db
type: application
version: v2.13.1
appVersion: v2.13.1
version: v2.13.2
appVersion: v2.13.2
1 change: 0 additions & 1 deletion commands/sub_rosa.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ async def db_reset_days(user_discord_id):
sql = "INSERT INTO sub_rosa (user_discord_id, time_created) VALUES (%s, NOW());"
vals = (user_discord_id,)
await query.execute(sql, vals)
await query.commit() # Ensure changes are saved

async def db_get_previous_reset():
async with AgimusDB(dictionary=True) as query:
Expand Down
Loading