Skip to content

Commit 9a9f018

Browse files
committed
[fix] 余計なsetTimeoutと間違ったurlを訂正
1 parent ecac093 commit 9a9f018

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ function electron_view(){
6666

6767
// ブラウザ(Chromium)の起動, 初期画面のロード
6868
mainWindow = new BrowserWindow({width: 800, height: 600});
69-
mainWindow.loadURL('https::/localhost:8000/');
69+
mainWindow.loadURL('http://localhost:8000/');
7070

7171
mainWindow.on('closed', function() {
7272
mainWindow = null;
7373
});
7474
});
7575
}
7676

77-
setTimeout(clastream_slackbot, 0);
77+
clastream_slackbot();
7878
electron_view();

0 commit comments

Comments
 (0)