Fix: Add missing dash
This commit is contained in:
parent
23e4152aaa
commit
0212fb1929
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ impl Into<String> for FileID {
|
|||
fn into(self) -> String {
|
||||
let typestr : String = self.id_type.into();
|
||||
let idstr : String = self.id.into();
|
||||
typestr + &idstr[..]
|
||||
typestr + "-" + &idstr[..]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue