diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-01-04 12:28:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 12:28:51 +0000 |
commit | c923de0e0598dfb0ad7c5abc6cdab6cd04045320 (patch) | |
tree | 9273c016029888c1555e4bcdba3b324dd2be4455 | |
parent | 642142556d8ecdea9beb86d7618b628b1803ab98 (diff) | |
parent | f23a822f1c9cb3bd2e8772c75af429e06515eaef (diff) | |
download | stable-diffusion-webui-gfx803-c923de0e0598dfb0ad7c5abc6cdab6cd04045320.tar.gz stable-diffusion-webui-gfx803-c923de0e0598dfb0ad7c5abc6cdab6cd04045320.tar.bz2 stable-diffusion-webui-gfx803-c923de0e0598dfb0ad7c5abc6cdab6cd04045320.zip |
Merge pull request #5969 from philpax/include-job-timestamp-in-progress-api
feat(api): include job_timestamp in progress
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index 9c9fd857..4fcc6edd 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -183,6 +183,7 @@ class State: "interrupted": self.interrupted,
"job": self.job,
"job_count": self.job_count,
+ "job_timestamp": self.job_timestamp,
"job_no": self.job_no,
"sampling_step": self.sampling_step,
"sampling_steps": self.sampling_steps,
|