Skip to content

Commit

Permalink
Merge pull request #29 from nearwood/master
Browse files Browse the repository at this point in the history
Fix MS1/Extra edge case
  • Loading branch information
nearwood authored Nov 5, 2019
2 parents e615fcc + 462702f commit 89ebda0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ini.php
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -41,6 +42,7 @@ public static function getConfig(&$signature)
$msDir = "ms1/";
break;

case "MS1/Extra":
case "MSnS-extra":
$msDir = "msns-extra/";
break;
Expand Down

0 comments on commit 89ebda0

Please sign in to comment.