Read the statement by Michael Teeuw here.
compliments updateIntervall not working
-
@andurii said in compliments updateIntervall not working:
yeah it is still updating every 30s now. I will test your value and report back.
edit: btw it is set to 600 seconds => 10 minutesMy bad. 10 minutes it is. Duh!
Have you modified the compliments module files in any way? Are you working with more than one config.js file? (I’ve done this) Sounds as if the module is not seeing the config changes
-
@mykle1 still not working and changing every 30 seconds…
I have not modified anything of the compliments files and am not using multiple configs (don’t actually know how to do that). I can add new compliments to the list and they are shown, so it’s not a general problem of not seeing the config. Seems more specific to the updateIntervall, as I tried different values without any changes in the mirror.{ module: "compliments", position: "lower_third", updateInterval: 5*60*1000, config: { compliments: { anytime: [ "Hallo", "Guten Tag" ], morning: [ "Guten Morgen!", "Hab einen schönen Tag!", "Hast du gut geschlafen?" ], afternoon: [ "Du siehst toll aus!" ], evening: [ "Du siehst klasse aus!" ] } } },
-
… You have to do this way:
Time format can be anyway 4 * 60 * 1000 or 60000 [60 seconds]``` { disabled: false, module: "compliments", position: "lower_third", config: { updateInterval: 60000, compliments: { anytime: [ "Hallo", "Guten Tag" ], } },```
-
Oh good catch. I didn’t even see that. :thumbsup:
-
thank you guys… you are totaly right.