Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
nlef committed Oct 4, 2022
2 parents 832bdf4 + 73e11a5 commit 77ef6a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bot/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ def _create_timelapse(self, printing_filename: str, gcode_name: str, info_mess:
info_mess.edit_text(text="Images recoding")
last_update_time = time.time()
for fnum, filename in enumerate(photos):
if time.time() >= last_update_time + 3:
if time.time() >= last_update_time + 10:
info_mess.edit_text(text=f"Images recoded {fnum}/{photo_count}")
last_update_time = time.time()

Expand Down
2 changes: 1 addition & 1 deletion bot/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def check_unfinished_lapses():
)
reply_markup = InlineKeyboardMarkup(files_keys)
bot_updater.bot.send_message(
configWrap.bot.chat_id,
configWrap.secrets.chat_id,
text="Unfinished timelapses found\nBuild unfinished timelapse?",
reply_markup=reply_markup,
disable_notification=notifier.silent_status,
Expand Down

0 comments on commit 77ef6a8

Please sign in to comment.