From 9d4993b121aa9914be1c952a25362ddb602eb9ec Mon Sep 17 00:00:00 2001 From: Ske Date: Sun, 23 Feb 2020 12:45:26 +0100 Subject: [PATCH] Fix Tupperbox import errors --- PluralKit.Core/Services/DataFileService.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PluralKit.Core/Services/DataFileService.cs b/PluralKit.Core/Services/DataFileService.cs index 8ec0614a..fa86323a 100644 --- a/PluralKit.Core/Services/DataFileService.cs +++ b/PluralKit.Core/Services/DataFileService.cs @@ -238,8 +238,7 @@ namespace PluralKit.Core !Name.IsLongerThan(Limits.MaxSystemNameLength) && !Description.IsLongerThan(Limits.MaxDescriptionLength) && !Tag.IsLongerThan(Limits.MaxSystemTagLength) && - !AvatarUrl.IsLongerThan(1000) && - DateTimeFormats.TimestampExportFormat.Parse(Created).Success; + !AvatarUrl.IsLongerThan(1000); } public struct DataFileMember