diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-05-11 12:14:41 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-12-06 11:08:18 +0100 |
commit | 2cc29cb7ae652e2f3cd85c421fe068b210cadeab (patch) | |
tree | 562861e216cd56265bfb0cb8bf0e71ec352f4036 | |
parent | 36b1ff47574758048c25de8b6cd4d4be01d90349 (diff) | |
download | bugzilla-2cc29cb7ae652e2f3cd85c421fe068b210cadeab.tar.gz bugzilla-2cc29cb7ae652e2f3cd85c421fe068b210cadeab.tar.xz |
Flyspray: Fix timestamps of attachments
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | Bugzilla/Migrate/Flyspray.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Migrate/Flyspray.pm b/Bugzilla/Migrate/Flyspray.pm index c38c21a35..a4fe5404a 100644 --- a/Bugzilla/Migrate/Flyspray.pm +++ b/Bugzilla/Migrate/Flyspray.pm @@ -464,7 +464,7 @@ sub _read_bugs { next unless -s $path; my $attachment_item = { submitter => $self->_get_username($attachment->{added_by}), - creation_ts => $attachment->{date_added}, + creation_ts => $self->parse_date($attachment->{date_added}), description => $attachment->{file_desc} || $attachment->{orig_name}, filename => $attachment->{orig_name}, |