Skip to content

Commit

Permalink
1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
philippe44 committed Dec 27, 2023
1 parent 37c5657 commit 1591150
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
Binary file renamed AirConnect-1.6.1.zip → AirConnect-1.6.2.zip
Binary file not shown.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.6.2
- (airupnp) when player timeout's, use its DescDocURL, not the UpdateData which is NULL...

1.6.1
- be more relax wrt player deletion and verify with either failed doc download (airupnp) or no response to ping (aircast)

Expand Down
2 changes: 1 addition & 1 deletion aircast/src/aircast.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "raop_server.h"
#include "cast_util.h"

#define VERSION "v1.6.1"" ("__DATE__" @ "__TIME__")"
#define VERSION "v1.6.2"" ("__DATE__" @ "__TIME__")"

/*----------------------------------------------------------------------------*/
/* typedefs */
Expand Down
2 changes: 1 addition & 1 deletion airupnp/src/airupnp.c
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ static void *UpdateThread(void *args) {
(Device->State == STOPPED && now - Device->LastSeen > PRESENCE_TIMEOUT))) {
// if device does not answer, try to download its DescDoc
IXML_Document* DescDoc = NULL;
if (UpnpDownloadXmlDoc(Update->Data, &DescDoc) != UPNP_E_SUCCESS) {
if (UpnpDownloadXmlDoc(Device->DescDocURL, &DescDoc) != UPNP_E_SUCCESS) {
pthread_mutex_lock(&Device->Mutex);
LOG_INFO("[%p]: removing unresponsive player (%s)", Device, Device->Config.Name);
raopsr_delete(Device->Raop);
Expand Down
2 changes: 1 addition & 1 deletion airupnp/src/airupnp.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "cross_util.h"
#include "metadata.h"

#define VERSION "v1.6.1"" ("__DATE__" @ "__TIME__")"
#define VERSION "v1.6.2"" ("__DATE__" @ "__TIME__")"

/*----------------------------------------------------------------------------*/
/* typedefs */
Expand Down

0 comments on commit 1591150

Please sign in to comment.