Commit f5644e55 authored by nanahira's avatar nanahira

use path.join instead

parent 2bbdda7b
......@@ -123,7 +123,7 @@ export class DeckAndCategory {
}
get symbol() {
return `${this.category}/${this.deck}`;
return path.join(this.category, this.deck);
}
set symbol(str: string) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment