mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
try uri encoding subscribe url
This commit is contained in:
parent
4d376eaa7b
commit
7a6bcd1971
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ export class Home extends React.Component<RouteComponentProps<{}>, IFilterListsS
|
|||
<td>{filterList.name}</td>
|
||||
<td>{filterList.description}</td>
|
||||
<td><a href={filterList.viewUrl}>View</a></td>
|
||||
<td><a href={"abp:subscribe?location=" + filterList.viewUrl}>Subscribe</a></td>
|
||||
<td><a href={"abp:subscribe?location=" + encodeURIComponent(filterList.viewUrl)}>Subscribe</a></td>
|
||||
</tr>
|
||||
)}
|
||||
</tbody>
|
||||
|
|
|
|||
Loading…
Reference in a new issue