diff --git a/net-im/dino/Makefile b/net-im/dino/Makefile index 9b714f8fa0950..52bbca287a6bd 100644 --- a/net-im/dino/Makefile +++ b/net-im/dino/Makefile @@ -1,7 +1,7 @@ PORTNAME= dino DISTVERSIONPREFIX= v DISTVERSION= 0.3.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-im MAINTAINER= ashish@FreeBSD.org diff --git a/net-im/dino/files/patch-libdino_src_service_call__peer__state.vala b/net-im/dino/files/patch-libdino_src_service_call__peer__state.vala new file mode 100644 index 0000000000000..f07a18f02c823 --- /dev/null +++ b/net-im/dino/files/patch-libdino_src_service_call__peer__state.vala @@ -0,0 +1,14 @@ +--- libdino/src/service/call_peer_state.vala 2022-02-13 00:18:06.000000000 +0300 ++++ libdino/src/service/call_peer_state.vala 2022-08-15 12:07:56.735765000 +0300 +@@ -45,7 +45,10 @@ + this.stream_interactor = stream_interactor; + this.calls = stream_interactor.get_module(Calls.IDENTITY); + +- var session_info_type = stream_interactor.module_manager.get_module(call.account, Xep.JingleRtp.Module.IDENTITY).session_info_type; ++ Xep.JingleRtp.Module jinglertp_module = stream_interactor.module_manager.get_module(call.account, Xep.JingleRtp.Module.IDENTITY); ++ if (jinglertp_module == null) return; ++ ++ var session_info_type = jinglertp_module.session_info_type; + session_info_type.mute_update_received.connect((session,mute, name) => { + if (this.sid != session.sid) return; +