lol

freshrss: 1.25.0 -> 1.26.0

Diff: https://github.com/FreshRSS/FreshRSS/compare/1.25.0...1.26.0

+3 -3
+1 -1
nixos/tests/freshrss/none-auth.nix
··· 18 18 machine.wait_for_unit("multi-user.target") 19 19 machine.wait_for_open_port(80) 20 20 response = machine.succeed("curl -vvv -s http://localhost:80/i/") 21 - assert '<title>Main stream · FreshRSS</title>' in response, "FreshRSS stream page didn't load successfully" 21 + assert '<title> · FreshRSS</title>' in response, "FreshRSS stream page didn't load successfully" 22 22 ''; 23 23 } 24 24 )
+2 -2
pkgs/servers/web-apps/freshrss/default.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation rec { 10 10 pname = "FreshRSS"; 11 - version = "1.25.0"; 11 + version = "1.26.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "FreshRSS"; 15 15 repo = "FreshRSS"; 16 16 rev = version; 17 - hash = "sha256-jBIU8xxXsl/67sebo8MS59Q0dWBTe0tO+xpVf1/uo0c="; 17 + hash = "sha256-J3YYx2enB8NHxgWUcJHStd5LkGRIB6dx3avbjhyIs3Q="; 18 18 }; 19 19 20 20 postPatch = ''