Улучшено распознавание xml-формата
This commit is contained in:
@@ -6,7 +6,10 @@ class ConvertFb2 extends ConvertBase {
|
||||
check(data, opts) {
|
||||
const {dataType} = opts;
|
||||
|
||||
return (dataType && dataType.ext == 'xml' && data.toString().indexOf('<FictionBook') >= 0);
|
||||
return (
|
||||
( (dataType && dataType.ext == 'xml') || this.isDataXml(data) ) &&
|
||||
data.toString().indexOf('<FictionBook') >= 0
|
||||
);
|
||||
}
|
||||
|
||||
async run(data, opts) {
|
||||
|
||||
Reference in New Issue
Block a user