From 5082c1deb847af54b82ec3886d17e45ced927e06 Mon Sep 17 00:00:00 2001 From: Uwe Kamper Date: Thu, 26 Dec 2019 22:27:59 +0100 Subject: [PATCH] Update for 36c3 --- server/route/35c3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/route/35c3.js b/server/route/35c3.js index 288bcef..87a29dd 100644 --- a/server/route/35c3.js +++ b/server/route/35c3.js @@ -2,7 +2,7 @@ require('isomorphic-fetch'); module.exports = (router) => { router.get('/35c3/fahrplan', async (ctx) => { - const res = await fetch('https://fahrplan.events.ccc.de/congress/2018/Fahrplan/schedule.json'); + const res = await fetch('https://fahrplan.events.ccc.de/congress/2019/Fahrplan/schedule.json'); ctx.assert((res.status === 200), res.status); const body = await res.json(); ctx.body = body;