[MatrixFile] Path always lower case
This commit is contained in:
parent
9812d0b0e1
commit
8b67d58ecc
|
@ -2,6 +2,6 @@ class MatrixFile {
|
|||
List<int> bytes;
|
||||
String path;
|
||||
|
||||
MatrixFile({this.bytes, this.path});
|
||||
MatrixFile({this.bytes, String path}) : this.path = path.toLowerCase();
|
||||
int get size => bytes.length;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue