diff options
author | Carsten Haitzler <raster@rasterman.com> | 2012-02-10 17:15:20 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2012-02-10 17:15:20 +0000 |
commit | 570ac8fa683303a38d252ec4ea149558148edc59 (patch) | |
tree | e83259740ff62e03d7d986694e05a4f3fef407d4 /src/bin/e_update.c | |
parent | eff3e8a71197f5c292e955d635f047453d291b2f (diff) | |
download | enlightenment-570ac8fa683303a38d252ec4ea149558148edc59.tar.gz |
and make back-off on update checks limit at about 1 day, not 6 days.
SVN revision: 67831
Diffstat (limited to 'src/bin/e_update.c')
-rw-r--r-- | src/bin/e_update.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/e_update.c b/src/bin/e_update.c index b6603a204e..23f6ca52f9 100644 --- a/src/bin/e_update.c +++ b/src/bin/e_update.c @@ -37,9 +37,9 @@ static void _bother_me_later_cb(void *data __UNUSED__, E_Dialog *dia __UNUSED__) { e_object_del(E_OBJECT(dialog)); - // 12 * 12 * 1hr === about 6 days. limit, so bother-me later will wait - // a week in between botherings. botherings reset on e start or restart - if (e_config->update.later < 12) + // 5 * 5 * 1hr === about 1 day limit, so bother-me later will wait + // a day in between botherings. botherings reset on e start or restart + if (e_config->update.later < 5) { e_config->update.later++; e_config_save_queue(); |