Skip to content

Commit

Permalink
fix: không decode % trong URI nữa
Browse files Browse the repository at this point in the history
  • Loading branch information
ooker777 committed Aug 2, 2024
1 parent 81e601f commit da7ec3d
Show file tree
Hide file tree
Showing 6 changed files with 4,622 additions and 3,602 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ export function xửLýPunycode(
đểDấuCáchTrongLiênKết: boolean = false,
): string | undefined {
if (!encodedUrl) return undefined;
const decodedUri = decodeURI(encodedUrl.toString().replace(/%(?![0-9][0-9a-fA-F]+)/g, "%25"));
// const decodedUri = decodeURI(encodedUrl.toString().replace(/%(?![0-9][0-9a-fA-F]+)/g, "%25"));
const decodedUri = decodeURI(encodedUrl.toString());
const hostname = (new URL(encodedUrl)).hostname;
const decodedHostname = punycode.toUnicode(hostname);
const decodedString = decodedUri.toString().replace(hostname, decodedHostname);
Expand Down
3 changes: 2 additions & 1 deletion Cấu hình và dữ liệu/Bài đăng/quảcầu.cc.csv
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,5 @@
"Kiếm tiền từ Trấn Kỳ","Các buổi đáp ứng nhu cầu học lập trình","kiem-tien-tu-tran-ky","Lý Minh Nhật",,"2024-02-14 17:41:22","2024-02-14 17:41:33"
"tesst","Uncategorized","tesst","Lý Minh Nhật",,"2024-02-25 20:28:40","2024-02-25 20:28:40"
"Khảo sát nhu cầu học lập trình","Khảo sát,Các buổi đáp ứng nhu cầu học lập trình","khao-sat-nhu-cau-hoc-lap-trinh","Lý Minh Nhật",,"2024-02-25 22:18:17","2024-02-25 23:14:27"
"Người dùng cá nhân hoặc dự án nhỏ có nên dùng WordPress hay không?","Các buổi đáp ứng nhu cầu học lập trình","nguoi-dung-ca-nhan-hoac-du-an-nho-co-nen-dung-wordpress-hay-khong","Lý Minh Nhật",,"2024-07-16 22:18:17","2024-07-16 23:14:27"
"Người dùng cá nhân hoặc dự án nhỏ có nên dùng WordPress hay không?","Các buổi đáp ứng nhu cầu học lập trình","nguoi-dung-ca-nhan-hoac-du-an-nho-co-nen-dung-wordpress-hay-khong","Lý Minh Nhật",,"2024-07-16 22:18:17","2024-07-16 23:14:27"
"Làm sao để tìm được thứ ta cần khi ta không biết từ khoá chính xác của nó?","Tò mò, lạc quan, tin tưởng, thong thả","lam-sao-de-tim-duoc-thu-ta-can-khi-ta-khong-biet-tu-khoa-chinh-xac-cua-no","Lý Minh Nhật",,"2024-08-02 16:15:17","2024-08-02 16:15:17"
Loading

0 comments on commit da7ec3d

Please sign in to comment.