Respect timeline page size setting

This commit is contained in:
Bleak Grey 2020-06-01 04:27:11 +03:00
parent 1806e9552c
commit df58394a35
2 changed files with 3 additions and 4 deletions

View File

@ -5,9 +5,9 @@ public class Tootle.Views.Local : Views.Federated {
icon = Desktop.fallback_icon ("system-users-symbolic", "document-open-recent-symbolic");
}
public override Request append_params (Request req) {
public override Request append_params (Request r) {
var req = base.append_params (r);
req.with_param ("local", "true");
req.with_param ("limit", limit.to_string ());
return req;
}

View File

@ -7,7 +7,6 @@ public class Tootle.Views.Timeline : IAccountListener, IStreamListener, Views.Ba
public bool is_public { get; construct set; default = false; }
protected InstanceAccount? account = null;
protected int limit = 25;
protected bool is_last_page = false;
protected string? page_next;
protected string? page_prev;
@ -96,7 +95,7 @@ public class Tootle.Views.Timeline : IAccountListener, IStreamListener, Views.Ba
}
public virtual Request append_params (Request req) {
return req.with_param ("limit", limit.to_string ());
return req.with_param ("limit", @"$(settings.timeline_page_size)");
}
public virtual bool request () {