[gnome] Update extensions

This commit is contained in:
2026-06-10 11:03:09 -04:00
parent 20fc1e4e75
commit 6c973853c6
394 changed files with 12513 additions and 1340 deletions

View File

@ -411,9 +411,9 @@ export const ChannelService = GObject.registerClass({
/**
* Broadcast an identity packet
*
* If @address is not %null it may specify an IPv4 or IPv6 address to send
* the identity packet directly to, otherwise it will be broadcast to the
* default address, 255.255.255.255.
* If {@link address] is not %null it may specify an IPv4 or IPv6 address
* to send the identity packet directly to, otherwise it will be broadcast
* to the default address, 255.255.255.255.
*
* @param {string} [address] - An optional target IPv4 or IPv6 address
*/
@ -773,9 +773,8 @@ export const Channel = GObject.registerClass({
// Starting with protocol version 8, the devices are expected to
// exchange identity packets again after TLS negotiation
if (this.identity.body.protocolVersion >= 8) {
if (this.identity.body.protocolVersion >= 8)
await this._exchangeIdentities();
}
} catch (e) {
this.close();
throw e;
@ -803,9 +802,8 @@ export const Channel = GObject.registerClass({
// Starting with protocol version 8, the devices are expected to
// exchange identity packets again after TLS negotiation
if (this.identity.body.protocolVersion >= 8) {
if (this.identity.body.protocolVersion >= 8)
await this._exchangeIdentities();
}
} catch (e) {
this.close();
throw e;