Skip to content

Commit bcb2079

Browse files
committed
Fix session handling
1 parent b8d2a32 commit bcb2079

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

pvr.teleboy/addon.xml.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<addon id="pvr.teleboy"
3-
version="19.8.1"
3+
version="19.8.2"
44
name="Teleboy PVR Client"
55
provider-name="rbuehlma">
66
<requires>
@@ -32,6 +32,8 @@
3232
<fanart>fanart.jpg</fanart>
3333
</assets>
3434
<news>
35+
v19.8.2
36+
- Fix session handling
3537
v19.8.1
3638
- Rework settings.xml to use new format
3739
- Fix some compile warnings by depends build of rapidjson

src/TeleBoy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ string TeleBoy::HttpRequest(Curl &curl, string action, string url,
9090
content = curl.Get(url, statusCode);
9191
}
9292
string cinergys = curl.GetCookie("cinergy_s");
93-
if (!cinergys.empty() && cinergys != cinergySCookies)
93+
if (!cinergys.empty() && cinergys != cinergySCookies && cinergys != "deleted")
9494
{
9595
cinergySCookies = cinergys;
9696
WriteDataJson();

0 commit comments

Comments
 (0)