mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-05-22 09:36:58 +00:00
Add comment
This commit is contained in:
parent
3382982465
commit
bd1a7b5a5a
@ -18,7 +18,8 @@ def is_excluded(path):
|
|||||||
|
|
||||||
def is_ignorable(text):
|
def is_ignorable(text):
|
||||||
return (
|
return (
|
||||||
re.fullmatch(r'[A-Z0-9_]+', text) and 'action' in text
|
re.fullmatch(r'[A-Z0-9_]+', text) and
|
||||||
|
any(keyword in text.lower() for keyword in ['action', 'status'])
|
||||||
)
|
)
|
||||||
|
|
||||||
def is_console_log_line(line):
|
def is_console_log_line(line):
|
||||||
|
@ -165,7 +165,7 @@ export function openIndexedDB() {
|
|||||||
reject('Error opening IndexedDB');
|
reject('Error opening IndexedDB');
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
} // TODO translate
|
||||||
|
|
||||||
export const listOfAllQortalRequests = [
|
export const listOfAllQortalRequests = [
|
||||||
'ADD_FOREIGN_SERVER',
|
'ADD_FOREIGN_SERVER',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user