From b2158bc1f255aa4f9dff5a53b40a1da0c4a301f0 Mon Sep 17 00:00:00 2001 From: Oli Evans Date: Fri, 16 Nov 2018 12:50:54 +0000 Subject: [PATCH] feat: Web UI updated to v2.2.0 (#1711) Now with quic support, responsive navbar, and a language selector License: MIT Signed-off-by: Oli Evans --- src/http/api/routes/webui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/api/routes/webui.js b/src/http/api/routes/webui.js index ea930d50fc..57d59d3776 100644 --- a/src/http/api/routes/webui.js +++ b/src/http/api/routes/webui.js @@ -20,7 +20,7 @@ module.exports = (server) => { method: '*', path: '/webui', handler: (request, reply) => { - return reply().redirect().location('/ipfs/QmNs2xy5LaECKB7sXMBBap8vN9qP6KqAba8udQqN9ZyogV') + return reply().redirect().location('/ipfs/QmPwKAKiPaTXYzqPSctCGnZoNyAjT3gn7AgXcT8TTDofw9') } } ])