• exec/load/fidocfg.js

    From Rob Swindell@VERT to Git commit to main/sbbs/master on Fri Jan 8 15:17:37 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/054e7f8178d3c1e83b3a71a5
    Modified Files:
    exec/load/fidocfg.js
    Log Message:
    Fix TypeError: obj is not an object

    Reported by Night Stalker (INTERNAL)
    Most likely some unexpected content in sbbsecho.ini.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Deuce@VERT to Git commit to main/sbbs/master on Tue Jan 26 17:57:49 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/bd61ccb208b4318bd80b0aef
    Modified Files:
    exec/load/fidocfg.js
    Log Message:
    Work on the assumption that obj is an Array...

    typeof (new Array()) === 'object' but an Array not not be an Object(?)

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Deuce@VERT to Git commit to main/sbbs/master on Tue Jan 26 18:02:08 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/87dceb286ef8215ca6d2efa1
    Modified Files:
    exec/load/fidocfg.js
    Log Message:
    Aha! null is an object that isn't an Object!

    var x = null;
    if (typeof x == 'object')
    print(Object.keys(x).join(', '));

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net