We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bec4bb2 commit 3d2fba9Copy full SHA for 3d2fba9
2 files changed
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "filimo-plus-cli",
3
"description": "download filimo items",
4
- "version": "3.2.1",
+ "version": "3.2.2",
5
"license": "MIT",
6
"author": {
7
"name": "SaeedPooyanfar",
src/Dom/DomService.ts
@@ -20,6 +20,7 @@ export class DomService {
20
const html: string = await this.getPage('https://www.filimo.com');
21
const username = [...html.matchAll(/profile_edit_text.*>(.*)</g)]
22
.map((i) => i[1])
23
+ .reverse()
24
.pop();
25
return username ? username : undefined;
26
}
0 commit comments