Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
See: #1262
  • Loading branch information
dteviot committed Mar 21, 2024
1 parent 82b27cf commit 8ae3ff8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugin/js/parsers/FoxaholicParser.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
"use strict";

parserFactory.register("foxaholic.com", () => new FoxaholicParser());
parserFactory.registerUrlRule(
url => (util.extractHostName(url).endsWith("foxaholic.com")),
() => new FoxaholicParser()
);

class FoxaholicParser extends WordpressBaseParser{
constructor() {
Expand Down

0 comments on commit 8ae3ff8

Please sign in to comment.