Hi, I noticed a couple of issues with the Browse Nets page. Browse Nets JavaScript error The page currently throws this error in the browser console: browse-nets.js:25 Uncaught TypeError: Cannot read properties of undefined (reading 'frequency') at Object.success (browse-nets.js:25:29) The cause appears to be that the JavaScript assumes every net has a times[0] entry: net['times'][0]['frequency'] At least one entry in /nets/json/all-nets.json appears to have an empty/missing times array, causing times[0] to be undefined. The code could guard against this, for example by checking that times[0] exists before accessing frequency. Browse Nets no longer shows the scheduled day The current table shows the UTC start time but not the day the net runs on. The JSON data already appears to contain the day information (day_local), and the previous JavaScript also references it: net['times'][0]['day_local'] Would it be possible to add a Day column to the Browse Nets table? This would make the page considerably easier to use when looking for nets on a particular day. At the moment, I have to open individual listings to determine which day they run on. It may also be worth considering that times is an array. Some nets may have multiple scheduled days/times, so displaying all of their scheduled days/times would be useful rather than only using times[0]. Thanks.