]> git.sesse.net Git - skvidarsync/commitdiff
Fix so that G4.5 headings are properly ignored.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 27 Oct 2023 22:19:33 +0000 (00:19 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 27 Oct 2023 22:19:33 +0000 (00:19 +0200)
bin/sync.pl

index 3e6920c1051ae2d3b06eb7927620f2c979764c0f..6fac46bcb5598e6225e07ba410611e3c46ff5cb1 100644 (file)
@@ -54,7 +54,7 @@ sub get_spreadsheet_name {
        my $cell = shift;
        my $name = $cell->{'userEnteredValue'}{'stringValue'};
        return undef if (!defined($name));
-       return undef if ($name =~ /^G[1-4]\.[1-4]/);
+       return undef if ($name =~ /^G[1-4]\.[1-5]/);
        $name =~ s/🆕//;
        $name =~ s/\(.*\)//g;
        $name =~ s/\[.*\]//g;