mirror of
https://github.com/rystaf/mlmym.git
synced 2024-11-08 16:15:33 +00:00
always include listing in next/prev buttons fixes #73
This commit is contained in:
parent
0508b95e24
commit
6b2c902b3c
10
state.go
10
state.go
|
@ -166,10 +166,7 @@ func (p State) ListBy(v string) string {
|
|||
}
|
||||
|
||||
func (p State) PrevPage() string {
|
||||
var listing string
|
||||
if p.Listing != "All" {
|
||||
listing = "&listingType=" + p.Listing
|
||||
}
|
||||
listing := "&listingType=" + p.Listing
|
||||
var q string
|
||||
if p.Query != "" || p.SearchType == "Communities" {
|
||||
q = "q=" + p.Query + "&communityname=" + p.CommunityName + "&username=" + p.UserName + "&searchtype=" + p.SearchType + "&"
|
||||
|
@ -178,10 +175,7 @@ func (p State) PrevPage() string {
|
|||
return "?" + q + "sort=" + p.Sort + listing + "&page=" + page
|
||||
}
|
||||
func (p State) NextPage() string {
|
||||
var listing string
|
||||
if p.Listing != "All" {
|
||||
listing = "&listingType=" + p.Listing
|
||||
}
|
||||
listing := "&listingType=" + p.Listing
|
||||
var q string
|
||||
if p.Query != "" || p.SearchType == "Communities" {
|
||||
q = "q=" + p.Query + "&communityname=" + p.CommunityName + "&username=" + p.UserName + "&searchtype=" + p.SearchType + "&"
|
||||
|
|
Loading…
Reference in a new issue