Misc small bug fixes

This commit is contained in:
Brett Williams
2023-06-04 12:06:01 -05:00
parent fae30d3a6a
commit 54ec4e7838
3 changed files with 6 additions and 5 deletions

View File

@@ -191,7 +191,7 @@ class DashboardWindow:
import io
image_data = response.content
image = Image.open(io.BytesIO(image_data))
if self.server_proxy.hostname == hostname:
if self.server_proxy.hostname == hostname and job_id == self.selected_job_id():
self.set_image(image)
except Exception as e:
logger.error(f"error fetching image: {e}")