From modules/ext.checkUser.tempAccounts/ipRevealUtils.js:
function getRevealedStatusKey( user ) { return 'mw-checkuser-temp-' + user; } function getRevealedStatus( user ) { return mw.storage.get( getRevealedStatusKey( user ) ); } function setRevealedStatus( user ) { if ( !getRevealedStatus( getRevealedStatusKey( user ) ) ) { mw.storage.set(/* ... */); } }
Obviously, the getRevealedStatus() call in setRevealedStatus will always be falsy, since the key to be checked would look something like mw-checkuser-temp-mw-checkuser-temp-~2026-12345-67. I'm not sure if this corresponds to any actual bugs.