diff options
author | Philpax <me@philpax.me> | 2022-12-24 09:45:16 +0000 |
---|---|---|
committer | Philpax <me@philpax.me> | 2022-12-24 09:45:16 +0000 |
commit | f23a822f1c9cb3bd2e8772c75af429e06515eaef (patch) | |
tree | efec9f33f0bc08346cd49c8ef13206ed8615e6f6 /modules/shared.py | |
parent | ca162781889331c95c4e0762fc7ff4e965de1c30 (diff) | |
download | stable-diffusion-webui-gfx803-f23a822f1c9cb3bd2e8772c75af429e06515eaef.tar.gz stable-diffusion-webui-gfx803-f23a822f1c9cb3bd2e8772c75af429e06515eaef.tar.bz2 stable-diffusion-webui-gfx803-f23a822f1c9cb3bd2e8772c75af429e06515eaef.zip |
feat(api): include job_timestamp in progress
Diffstat (limited to 'modules/shared.py')
-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 8ea3b441..f356dbf7 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -171,6 +171,7 @@ class State: "interrupted": self.skipped,
"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,
|