Skip to content

Commit

Permalink
[Hotfix] get json from 443 port to prevent SSL errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-ceccato committed Jan 29, 2024
1 parent 207b6ef commit c493d9f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions js/pomodoro.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ let shortRestTime = 5 * 60;
let focusTime = 25 * 60;
let pomosBeforeLongRest = 4;
let onlineMode = false;
const onlinePort = 35123
let onlineIP = "localhost"
const onlinePort = 443
//let onlineIP = "localhost"
//let onlineIP = window.location.hostname
let onlineIP = "easypomo.duckdns.org"

// if defined, load saved configuration
console.log("Loading saved data...");
Expand Down

0 comments on commit c493d9f

Please sign in to comment.