Windy Community
    • Unread
    • Categories
    • Groups
    • Go to windy.com
    • Register
    • Login
    1. Home
    2. Okocedion
    3. Topics
    • Profile
    • Following 0
    • Followers 3
    • Topics 2
    • Posts 8
    • Best 2
    • Controversial 0
    • Groups 0

    Topics created by Okocedion

    • OkocedionO

      [bug?] Displaying the bottom weather bar removes the dev mode

      Windy Plugins
      • • • Okocedion
      2
      0
      Votes
      2
      Posts
      560
      Views

      ivoI

      Bug will be fixed

    • OkocedionO

      Improved paragliding sites plugin

      Windy Plugins
      • • • Okocedion
      18
      4
      Votes
      18
      Posts
      5.2k
      Views

      jakubvranaJ

      @jakubvrana I was able to solve it by this hack:

      Install Header Editor. Add rule Modify response header with header name Access-Control-Allow-Origin and value https://www.windy.com. Add a second rule Modify response header with this custom function: let access = false; for (let i = 0; i < val.length; i++) { if (val[i].name == 'Access-Control-Allow-Origin') { if (access) { val.splice(i, 1); } access = true; } }

      I don't know why both these rules are needed, the first one shouldn't be needed. However if I don't add it then the headers are not modified.