Skip to content

Commit

Permalink
Merge pull request thelounge#474 from thelounge/astorije/fix-crash-theme
Browse files Browse the repository at this point in the history
Prevent the app from crashing when no theme is specified
  • Loading branch information
maxpoulin64 committed Jul 8, 2016
2 parents f15e201 + 5e319d2 commit 33f84f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link id="theme" rel="stylesheet" href="<%= theme %>">
<link id="theme" rel="stylesheet" href="<%= typeof(theme) !== "undefined" ? theme : "themes/example.css" %>">
<style id="user-specified-css"></style>

<link rel="shortcut icon" href="img/favicon.png" data-other="img/favicon-notification.png" data-toggled="false" id="favicon">
Expand Down

0 comments on commit 33f84f7

Please sign in to comment.