Sync MyStories using the ID not the name

This commit is contained in:
Josh Perez
2022-08-03 20:10:05 -04:00
committed by GitHub
parent 6d1a27be5a
commit 782838c591
5 changed files with 14 additions and 18 deletions

View File

@@ -77,8 +77,4 @@ export class UUID {
}
return new UUID(`${padded}-0000-4000-8000-${'0'.repeat(12)}`);
}
public static fromString(value: string): UUIDStringType {
return new UUID(value).toString();
}
}