summaryrefslogtreecommitdiff
path: root/app/Http
diff options
context:
space:
mode:
Diffstat (limited to 'app/Http')
-rw-r--r--app/Http/Controllers/IndexController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Http/Controllers/IndexController.php b/app/Http/Controllers/IndexController.php
index 3704afe..d9e792a 100644
--- a/app/Http/Controllers/IndexController.php
+++ b/app/Http/Controllers/IndexController.php
@@ -25,7 +25,7 @@ class IndexController extends Controller {
#public function iCal(Request $request) {
public function iCal($username) {
- if ( ! Cache::has('schedule_' . $username)) {
+ if ( ! Cache::has('xschedule_' . $username)) {
$helper = new Helper();
$schedule = $helper->getCalendar($username);
Cache::put('schedule_' . $username, $schedule, 360);