Skip to content

Commit 463e3b9

Browse files
authored
Merge pull request #387 from datdamnzotz/fix-load-homebrew
Fix for homebrew not being loaded.
2 parents f06a56a + 0a7bc25 commit 463e3b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/clj/orcpub/index.clj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ html, body, #app {
115115
(include-css "/font-awesome-4.7.0/css/font-awesome.min.css")
116116
(include-css "https://fonts.googleapis.com/css?family=Open+Sans")
117117
[:script
118-
"if(plugins === null || plugins === '{}')
118+
"let plugins = localStorage.getItem ('plugins');
119+
if(plugins === null || plugins === '{}')
119120
{
120121
fetch('https://' + window.location.host + '/homebrew.orcbrew')
121122
.then(resp => resp.text())

0 commit comments

Comments
 (0)