We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6baff1f commit 6b247e3Copy full SHA for 6b247e3
feed-crawler/src/common/parser/formats/atom10-parser.ts
@@ -19,7 +19,6 @@ export class Atom10Parser extends BaseFeedParser {
19
20
protected extractRawFeeds(xmlData: string): RawFeed[] {
21
const parsed = this.xmlParser.parse(xmlData);
22
- console.log(parsed);
23
24
let entries = parsed.feed.entry;
25
if (!Array.isArray(entries)) {
@@ -42,7 +41,6 @@ export class Atom10Parser extends BaseFeedParser {
42
41
43
// link 태그가 여러개인 경우
44
if (Array.isArray(linkData)) {
45
- console.log('a');
46
const alternateLink = linkData.find((l) => l['@_rel'] === 'alternate');
47
return alternateLink['@_href'] || '';
48
}
0 commit comments