This commit is contained in:
Михаил Капелько
2023-12-29 14:00:50 +03:00
parent 143b0d1dd5
commit 14e762ba3c
2 changed files with 6 additions and 0 deletions

View File

@@ -8,6 +8,9 @@ public extension Bus {
key == v.key,
let value = v.value as? T
else {
if key == "MeetupId.finishLoading" {
/**/print("ИГР Bus.convertKV failed k/v/T: '\(key)'/'\(v)'/'\(type(of: T)'")
}
return nil
}
return (key, value)

View File

@@ -26,10 +26,12 @@ public extension MeetupId {
}
static func shouldResetLoading(_ c: MeetupIdContext) -> Bool? {
/**/print("ИГР MeetupIS.shouldRL-0")
if
c.join,
!c.isLoading.value
{
/**/print("ИГР MeetupIS.shouldRL-1")
return true
}
@@ -37,6 +39,7 @@ public extension MeetupId {
c.finishLoading,
c.isLoading.value
{
/**/print("ИГР MeetupIS.shouldRL-2")
return false
}