fix: do not ignore tag
This commit is contained in:
parent
fb50ff1c08
commit
c26c3f7235
1 changed files with 1 additions and 0 deletions
|
@ -20,6 +20,7 @@ export function classifyTags(tags: string[]): TagClassifyResult {
|
||||||
for (const tag of tags) {
|
for (const tag of tags) {
|
||||||
const split = tag.split(":");
|
const split = tag.split(":");
|
||||||
if (split.length !== 2) {
|
if (split.length !== 2) {
|
||||||
|
result.rest.push(tag);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
const [prefix, name] = split;
|
const [prefix, name] = split;
|
||||||
|
|
Loading…
Add table
Reference in a new issue