diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 446e5f2..2409333 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -9,8 +9,8 @@ jobs: runs-on: ubuntu-latest name: Build & Deploy to Github Pages steps: + - id: node-to-gh + uses: fdelmazo/node-to-gh-action@v2 - name: Run tests run: npm test shell: bash - - id: node-to-gh - uses: fdelmazo/node-to-gh-action@v2 diff --git a/src/DataContext.js b/src/DataContext.js index f1bcfb9..cf1c482 100644 --- a/src/DataContext.js +++ b/src/DataContext.js @@ -17,7 +17,7 @@ if (window.location.hash) { // Si el usuario tiene una sesión de cuando la aplicación tenía horarios estaticos // en vez de importados del SIU, le limpiamos la data const json = JSON.parse(window.localStorage.getItem("fiubaplan")); -if (json["cuatrimestre"]) { +if (json && json["cuatrimestre"]) { localStorage.setItem("fiubaplan", JSON.stringify({})); }