Added README.txt and GPL Header to Source Files
[DHBWCampusApp.git] / app / src / main / java / de / dhbwloe / campusapp / vorlesungen / CalendarManager.java
index fae9148e9bbb5564183fc4cfda3c456077fd3e4b..9582f7c70a27aa52cf47c482fb24ba76b1122536 100644 (file)
@@ -1,6 +1,19 @@
+/* CalendarManager.java
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
 package de.dhbwloe.campusapp.vorlesungen;
-
-
 import android.util.Log;
 
 import net.fortuna.ical4j.model.Calendar;
@@ -83,7 +96,7 @@ public class CalendarManager extends IscRequestHelper {
             timeFrom = now - (86400 * 5);
             timeTo = now + (86400 * 7 * 4);
         } else {
-            timeFrom = now - (86400 * 365 * 3);
+            timeFrom = now - (86400 * 365 * 4);
             timeTo = now + (86400 * 365 * 4);
         }
         CourseEvent[] events = AppContext.getDatabaseManager().getCourseCalendarEvents(sCourseName, timeFrom, timeTo);
@@ -213,7 +226,7 @@ public class CalendarManager extends IscRequestHelper {
                 }
             }
 
-            dbEvent.update(AppContext.getDatabaseManager());
+            dbEvent.update(AppContext.getDatabaseManager(), event);
             Log.i("CMSync", "Update Event: "+dbEvent.getUniqueId());
         }