diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-07-01 01:22:41 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-07-01 01:22:41 +0200 |
| commit | aeff733d3127e2629388a9a019c07d9f32647d85 (patch) | |
| tree | 584d84100712b2e25aa54fe1d56b0d84ecc63790 | |
| parent | 6ce5b203f7b056422d6b94dd97100ae0e79dfa08 (diff) | |
Fix race.
| -rw-r--r-- | src/tools/dcpomatic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index b05600ec3..24c5bd5ec 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -1105,8 +1105,8 @@ private: void tools_check_for_updates () { - UpdateChecker::instance()->run (); _update_news_requested = true; + UpdateChecker::instance()->run(); } void tools_send_translations () |
