Merge pull request #29 from nearwood/master

Fix MS1/Extra edge case
This commit is contained in:
Nick Earwood 2019-11-04 20:39:34 -06:00 committed by GitHub
commit 89ebda0d81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ class INI
public static function getConfig(&$signature)
{
//sig is 19 bytes + \0
//"MS1/Extra format 029y3 *********"
//"MS3 Format 0262.09 "
//"MS3 Format 0435.14P"
//"MS2Extra comms332m2"
@ -41,6 +42,7 @@ class INI
$msDir = "ms1/";
break;
case "MS1/Extra":
case "MSnS-extra":
$msDir = "msns-extra/";
break;