pinokiod 3.19.9 → 3.19.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.19.9",
3
+ "version": "3.19.11",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -798,20 +798,19 @@ if (document.querySelector("form input[type=search]")) {
798
798
  // if launch_complete is false => not finished launching. wait until it's complete, and then refresh
799
799
  // autolaunch display update
800
800
  <% if (!launch_complete) { %>
801
- debugger
802
- let interval = setInterval(async () => {
803
- let res = await fetch("/pinokio/info").then((res) => {
804
- return res.json()
805
- })
806
- if (res.launch_complete) {
807
- debugger
808
- console.log("launched")
809
- clearInterval(interval)
810
- location.href = location.href
811
- } else {
812
- console.log("not yet launched")
813
- }
814
- }, 1000)
801
+ //let interval = setInterval(async () => {
802
+ // let res = await fetch("/pinokio/info").then((res) => {
803
+ // return res.json()
804
+ // })
805
+ // if (res.launch_complete) {
806
+ // debugger
807
+ // console.log("launched")
808
+ // clearInterval(interval)
809
+ // location.href = location.href
810
+ // } else {
811
+ // console.log("not yet launched")
812
+ // }
813
+ //}, 1000)
815
814
  <% } %>
816
815
  document.addEventListener("keydown", (e) => {
817
816
  e = e || window.event;