From 8b67d58ecc6c5348341ee4ffbe8d07acc88d010a Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Wed, 23 Oct 2019 18:14:04 +0000 Subject: [PATCH] [MatrixFile] Path always lower case --- lib/src/utils/MatrixFile.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/utils/MatrixFile.dart b/lib/src/utils/MatrixFile.dart index ee637d1..87bb560 100644 --- a/lib/src/utils/MatrixFile.dart +++ b/lib/src/utils/MatrixFile.dart @@ -2,6 +2,6 @@ class MatrixFile { List bytes; String path; - MatrixFile({this.bytes, this.path}); + MatrixFile({this.bytes, String path}) : this.path = path.toLowerCase(); int get size => bytes.length; }