try uri encoding subscribe url

This commit is contained in:
Collin M. Barrett 2018-01-31 14:40:50 -06:00
parent 4d376eaa7b
commit 7a6bcd1971

View file

@ -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>