summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-10-02 19:58:37 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-10-02 19:58:37 +0200
commit9b40aaf03b6a644dac0d5cbd362f44afd80f2c31 (patch)
treef4829b6581bad06dcac798422a06f5b7323b2dbd
parent8e8b5d9fdf6cb6d873af3e99c835814badfe1c99 (diff)
typo
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b1b7fad33..fc86d164f 100644
--- a/README.md
+++ b/README.md
@@ -256,7 +256,7 @@ System Cron:
* Check your **data/nextcloud.log** for errors
* Check if the cronjob is ever executed by placing an **error_log('updating');** in the [background job file](https://github.com/nextcloud/news/blob/master/cron/updater.php#L28). If the cronjob runs, there should be an updating log statement in your httpd log.
* If there is no **updating** statement in your logs check if your cronjob is executed by executing a different script
-* Check if the **oc_jobs** table has a **reserved_at** with a different value than 0. If it does for whatever reason, set it to 0. You can check this by executing:
+* Check if the **oc_jobs** table has a **reserved_at** entry with a value other than 0. If it does for whatever reason, set it to 0. You can check this by executing:
```sql
SELECT reserved_at FROM oc_jobs WHERE argument = '["OCA\\News\\Cron\\Updater","run"]';