diff options
| author | Jokler <jokler.contact@gmail.com> | 2019-05-27 01:50:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-27 01:50:06 +0200 |
| commit | 48fb1ec9773eb8900287f5d737f43d49923aa3b1 (patch) | |
| tree | 770f49f7a1c2f3033f880503c2494bec1bc3143b /src/plugins/remind | |
| parent | 26135b48a7e772d47034adf5e642b70ecae3f5d3 (diff) | |
| download | frippy-48fb1ec9773eb8900287f5d737f43d49923aa3b1.tar.gz frippy-48fb1ec9773eb8900287f5d737f43d49923aa3b1.zip | |
Remind: Fix invalid minimum repeat duration
Diffstat (limited to 'src/plugins/remind')
| -rw-r--r-- | src/plugins/remind/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remind/mod.rs b/src/plugins/remind/mod.rs index fa44b0b..2a8a093 100644 --- a/src/plugins/remind/mod.rs +++ b/src/plugins/remind/mod.rs @@ -134,7 +134,7 @@ impl<T: Database + 'static, C: FrippyClient> Remind<T, C> { author, time: &time, repeat: parser - .get_repeat(Duration::from_secs(600))? + .get_repeat(Duration::from_secs(300))? .map(|d| d.as_secs() as i64), }; |
