Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ohld committed Jun 7, 2024
1 parent 24e0648 commit 7b24d3d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/flows/rewards/uploaded_memes.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ async def reward_ru_users_for_weekly_top_uploaded_memes():
bot,
top_meme["author_id"],
type,
enternal_id=today,
external_id=today,
)

if top_meme["status"] != MemeStatus.PUBLISHED:
Expand Down
2 changes: 1 addition & 1 deletion src/tgbot/handlers/deep_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async def handle_deep_link_used(
bot,
invitor_user_id,
TrxType.USER_INVITER_PREMIUM if is_premium else TrxType.USER_INVITER,
enternal_id=str(invited_user["id"]),
external_id=str(invited_user["id"]),
)

await log(f"🤝 #{invitor_user_id} invited {invited_user_name}")
4 changes: 2 additions & 2 deletions src/tgbot/handlers/upload/moderation.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ async def handle_uploaded_meme_review_button(
context.bot,
update.effective_user.id,
TrxType.MEME_UPLOAD_REVIEWER,
enternal_id=str(meme["id"]),
external_id=str(meme["id"]),
)

if action == "approve":
Expand Down Expand Up @@ -241,7 +241,7 @@ async def handle_uploaded_meme_review_button(
context.bot,
meme_upload["user_id"],
TrxType.MEME_UPLOADER,
enternal_id=str(meme["id"]),
external_id=str(meme["id"]),
)

await context.bot.send_message(
Expand Down

0 comments on commit 7b24d3d

Please sign in to comment.