Skip to content
Snippets Groups Projects
Verified Commit 9625008f authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

fix: correct issue with wrongly-annotated sync methods

parent e1610436
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ interface IIgnoreListManager : ISyncableObject {
isActive: Boolean
) {
sync(
target = ProtocolSide.CLIENT,
target = ProtocolSide.CORE,
"requestAddIgnoreListItem",
qVariant(type, QtType.Int),
qVariant(ignoreRule, QtType.QString),
......
......@@ -397,7 +397,7 @@ interface INetwork : ISyncableObject {
@SyncedCall(target = ProtocolSide.CORE)
fun requestConnect() {
sync(
target = ProtocolSide.CLIENT,
target = ProtocolSide.CORE,
"requestConnect",
)
}
......@@ -405,7 +405,7 @@ interface INetwork : ISyncableObject {
@SyncedCall(target = ProtocolSide.CORE)
fun requestDisconnect() {
sync(
target = ProtocolSide.CLIENT,
target = ProtocolSide.CORE,
"requestDisconnect",
)
}
......@@ -413,7 +413,7 @@ interface INetwork : ISyncableObject {
@SyncedCall(target = ProtocolSide.CORE)
fun requestSetNetworkInfo(info: NetworkInfo) {
sync(
target = ProtocolSide.CLIENT,
target = ProtocolSide.CORE,
"requestSetNetworkInfo",
qVariant(info, QuasselType.NetworkInfo),
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment