这是indexloc提供的服务,不要输入任何密码
Skip to content
This repository was archived by the owner on May 17, 2021. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ protected long getRefreshInterval() {

@Override
protected String getName() {
return "Google Calender Event-Downloader";
return "Google Calendar Event Downloader";
}

@Override
Expand Down Expand Up @@ -156,7 +156,7 @@ protected void execute() {
* the amount of events to process.
*/
private static Events downloadEventFeed() {
// TODO: teichsta: there could be more than one calender url in openHAB.cfg
// TODO: teichsta: there could be more than one calendar url in openHAB.cfg
// for now we accept this limitation of downloading just one feed ...

if (StringUtils.isBlank(calendar_name)) {
Expand Down Expand Up @@ -220,7 +220,7 @@ private static void checkIfFullCalendarFeed(List<Event> list) {
if (list != null && !list.isEmpty()) {
Event referenceEvent = list.get(0);
if (referenceEvent.getICalUID() == null || referenceEvent.getStart().toString().isEmpty()) {
logger.warn("calender entries are incomplete - please make sure to use the full calendar feed");
logger.warn("calendar entries are incomplete - please make sure to use the full calendar feed");
}

}
Expand Down