1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

rate-limit requests for favicons when not present to conserve traffic (refs #457)

This commit is contained in:
Andrew Dolgov
2012-05-24 16:20:03 +04:00
parent 0e63fc49ab
commit 382268c6c9
6 changed files with 36 additions and 6 deletions

View File

@@ -119,6 +119,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
update_on_checksum_change boolean not null default false,
strip_images boolean not null default false,
pubsub_state integer not null default 0,
favicon_last_checked datetime default null,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
index(cat_id),
@@ -260,7 +261,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
insert into ttrss_version values (91);
insert into ttrss_version values (92);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,