fix: remove overridden getId function in PeertubeAccountExtractor

This commit is contained in:
ThetaDev 2023-04-18 21:21:15 +02:00
parent 2ad496fc2b
commit 0c5fdaca7e
1 changed files with 0 additions and 10 deletions

View File

@ -154,14 +154,4 @@ public class PeertubeAccountExtractor extends ChannelExtractor {
public String getName() throws ParsingException {
return JsonUtils.getString(json, "displayName");
}
@Nonnull
@Override
public String getId() throws ParsingException {
if (super.getId().contains(ACCOUNTS)) {
return super.getId();
} else {
return ACCOUNTS + super.getId();
}
}
}