Fix issue with dashboard_window not showing thumbs

This commit is contained in:
Brett Williams
2023-06-03 14:30:07 -05:00
parent a98bea09cf
commit c4280d95da
3 changed files with 17 additions and 9 deletions

View File

@@ -185,7 +185,7 @@ class DashboardWindow:
job_id = self.selected_job_id()
if job_id:
# update thumb
response = self.server_proxy.request(f'job/{job_id}/thumbnail?size=big&video_ok=false')
response = self.server_proxy.request(f'job/{job_id}/thumbnail?size=big')
if response.ok:
try:
import io