You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the format for the codes of the new drivers license in California (expire in 2023 instead of 2020) have changed a bit. The drivers license number seems to be located under DCK, previously it was located under DAQ. I made an quick and dirty adjustment to the parseUsdl.js file to accommodate for this in my local environment:
Under line 22:
/////////////////////////////////////////////// Switch values if true, of value and key ///////////////////////////////////////////////if(isNewDl(code,line))value=line.slice(8,16),key='documentNumber'
Under line 43:
/////////////////////////////// Determine if DCK code's //// key is documentNumber ///////////////////////////////constisNewDl=(code,line)=>(code==="DCK"&&line.slice(0,8).match('DCK[0-9][0-9][0-9][0-9][0-9]')!==null)
Just wanted to bring attention to this.
The text was updated successfully, but these errors were encountered:
It seems the format for the codes of the new drivers license in California (expire in 2023 instead of 2020) have changed a bit. The drivers license number seems to be located under DCK, previously it was located under DAQ. I made an quick and dirty adjustment to the
parseUsdl.js
file to accommodate for this in my local environment:Under line 22:
Under line 43:
Just wanted to bring attention to this.
The text was updated successfully, but these errors were encountered: