summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Spreadsheet/ParseXLSX.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Spreadsheet/ParseXLSX.pm b/lib/Spreadsheet/ParseXLSX.pm
index 4fb1d0f..49dc088 100644
--- a/lib/Spreadsheet/ParseXLSX.pm
+++ b/lib/Spreadsheet/ParseXLSX.pm
@@ -109,7 +109,7 @@ sub _parse_sheet {
my ($row, $col) = $self->_cell_to_row_col($cell->att('r'));
my $val = $cell->first_child('v')->text;
- my $type = $cell->att('t');
+ my $type = $cell->att('t') || 'n';
my $long_type;
if ($type eq 's') {