mirror of
https://github.com/Viren070/AIOStreams.git
synced 2025-12-01 23:14:04 +01:00
fix(easynews): encode easynews credentials
This commit is contained in:
@@ -37,7 +37,7 @@ export class Easynews extends BaseWrapper {
|
||||
}
|
||||
|
||||
const getEasynewsConfigString = (username: string, password: string) => {
|
||||
return `%7B%22username%22%3A%22${username}%22%2C%22password%22%3A%22${password}%22%7D`;
|
||||
return `%7B%22username%22%3A%22${encodeURIComponent(username)}%22%2C%22password%22%3A%22${encodeURIComponent(password)}%22%7D`;
|
||||
};
|
||||
|
||||
export async function getEasynewsStreams(
|
||||
|
||||
Reference in New Issue
Block a user