Skip to content

Commit

Permalink
Fixed issue #19
Browse files Browse the repository at this point in the history
  • Loading branch information
ropg committed Dec 16, 2018
1 parent c341f04 commit 3e05cba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"type": "git",
"url": "https://github.com/ropg/ezTime"
},
"version": "0.7.7",
"version": "0.7.8",
"framework": "arduino",
"platforms": "*",
"build": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ezTime
version=0.7.7
version=0.7.8
author=Rop Gonggrijp
maintainer=Rop Gonggrijp
sentence=ezTime - pronounced "Easy Time" - is a very easy to use Arduino time and date library that provides NTP network time lookups, extensive timezone support, formatted time and date strings, user events, millisecond precision and more.
Expand Down
2 changes: 1 addition & 1 deletion src/ezTime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ namespace ezt {
if (!_initialised) {
for (uint8_t n = 0; n < MAX_EVENTS; n++) _events[n] = { 0, NULL };
#ifdef EZTIME_NETWORK_ENABLE
updateNTP(); // Start the cycle of updateNTP running and then setting an event for its next run
if (_ntp_interval) updateNTP(); // Start the cycle of updateNTP running and then setting an event for its next run
#endif
_initialised = true;
}
Expand Down

0 comments on commit 3e05cba

Please sign in to comment.