]> git.sesse.net Git - skvidarsync/commitdiff
Fix a very strange off-by-one (why did this only start when we moved from reading...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 29 Oct 2023 22:37:48 +0000 (23:37 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 29 Oct 2023 22:37:48 +0000 (23:37 +0100)
bin/sync.pl

index 3dfabce8a0baea126d1b217f58335cf5f5085b25..85cfb2c985c3e72a2c7007eb508627038e2fc9a8 100644 (file)
@@ -163,7 +163,7 @@ sub find_where_each_name_is {
 
        my %seen_names = ();
        my $rows = $json->{'sheets'}[0]{'data'}[0]{'rowData'};
-       my $rowno = 4;
+       my $rowno = 3;
        for my $row (@$rows) {
                my $colno = 0;
                for my $val (@{$row->{'values'}}) {