Skip to content

Commit c070dc8

Browse files
committed
Fixed error related to playing audio notification (#113)
1 parent 60c4163 commit c070dc8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

update_log_mre.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
### 2.0.78.1 MRE
22

33
* Fixed reading paths from paths.json (broken in 2.0.73 MRE).
4+
* Fixed error related to playing audio notification.
45
* Disabling Image-2-Image when Enhance Image is active.
56

67
### 2.0.76 MRE

webui.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ def verify_input(img2img, canny, depth, gallery_in, gallery_rev, gallery_out):
582582
outputs=[progress_html, progress_window, gallery_holder, output_gallery, metadata_viewer, gallery_tabs]) \
583583
.then(lambda: (gr.update(visible=True), gr.update(visible=False)), outputs=[generate_button, stop_button]) \
584584
.then(fn=get_current_links, inputs=None, outputs=links) \
585-
.then(fn=None, _js='playNotification()')
585+
.then(fn=None, _js='playNotification')
586586

587587
notification_file = 'notification.ogg' if exists('notification.ogg') else 'notification.mp3' if exists('notification.mp3') else None
588588
if notification_file != None:

0 commit comments

Comments
 (0)