aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2019-09-19 14:51:30 +0200
committerGitHub <noreply@github.com>2019-09-19 14:51:30 +0200
commit492aacd194463dec813a5ef94be156ca41adaac8 (patch)
tree8cf99c118c54572e36fbdc4239539f63f5e81faf /src
parentc7fce40b448a730b8722bfe39b21aa91fb58201a (diff)
parentaf7b22a3be35fff69b877ff68f9a12b1b73b421e (diff)
downloadwallabag-492aacd194463dec813a5ef94be156ca41adaac8.tar.gz
wallabag-492aacd194463dec813a5ef94be156ca41adaac8.tar.zst
wallabag-492aacd194463dec813a5ef94be156ca41adaac8.zip
Merge pull request #4123 from wallabag/fix-reading-speed-install
Fixed default value for reading speed
Diffstat (limited to 'src')
-rw-r--r--src/Wallabag/CoreBundle/DependencyInjection/Configuration.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php b/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
index a9791f6b..7ae73371 100644
--- a/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
+++ b/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
@@ -30,7 +30,7 @@ class Configuration implements ConfigurationInterface
30 ->defaultValue(50) 30 ->defaultValue(50)
31 ->end() 31 ->end()
32 ->integerNode('reading_speed') 32 ->integerNode('reading_speed')
33 ->defaultValue(1) 33 ->defaultValue(200)
34 ->end() 34 ->end()
35 ->scalarNode('version') 35 ->scalarNode('version')
36 ->end() 36 ->end()