Don't find feed names in reverse order for tag

master
Bel LaPointe 2018-10-11 15:27:21 -06:00
parent 622264cdd4
commit b5a6d24f7d
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ func (ex *Exchange) GetFeedItem(ID string) (string, error) {
}
func (ex *Exchange) GetFeedTagRSS(tag string) (string, error) {
feedNames, err := ex.SClient.List(nsForFeeds, "", false, -1)
feedNames, err := ex.SClient.List(nsForFeeds, "", true, -1)
if err != nil {
return "", err
}