Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
QuasselDroid-ng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
QuasselDroid-ng
Commits
20ce4552
Verified
Commit
20ce4552
authored
5 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Fixes crash cluster #4d2bf15a
parent
66967d9e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/src/main/java/de/kuschku/libquassel/quassel/syncables/BufferSyncer.kt
+4
-4
4 additions, 4 deletions
...a/de/kuschku/libquassel/quassel/syncables/BufferSyncer.kt
with
4 additions
and
4 deletions
lib/src/main/java/de/kuschku/libquassel/quassel/syncables/BufferSyncer.kt
+
4
−
4
View file @
20ce4552
...
...
@@ -304,7 +304,7 @@ class BufferSyncer constructor(
networkId
:
NetworkId
?
=
null
,
type
:
Buffer_Types
?
=
null
,
groupId
:
Int
?
=
null
)
=
_bufferInfos
.
values
.
filter
{
)
=
_bufferInfos
.
values
.
toList
().
asSequence
().
filter
{
bufferId
==
null
||
it
.
bufferId
==
bufferId
}.
filter
{
networkId
==
null
||
it
.
networkId
==
networkId
...
...
@@ -315,7 +315,7 @@ class BufferSyncer constructor(
}.
filter
{
val
caseMapper
=
IrcCaseMappers
[
session
.
networks
[
it
.
networkId
]
?.
support
(
"CASEMAPPING"
)]
bufferName
==
null
||
caseMapper
.
equalsIgnoreCaseNullable
(
it
.
bufferName
,
bufferName
)
}
}
.
toList
()
fun
liveAll
(
bufferName
:
String
?
=
null
,
...
...
@@ -324,7 +324,7 @@ class BufferSyncer constructor(
type
:
Buffer_Types
?
=
null
,
groupId
:
Int
?
=
null
)
=
liveBufferInfos
().
map
{
it
.
values
.
filter
{
it
.
values
.
toList
().
asSequence
().
filter
{
bufferId
==
null
||
it
.
bufferId
==
bufferId
}.
filter
{
networkId
==
null
||
it
.
networkId
==
networkId
...
...
@@ -335,7 +335,7 @@ class BufferSyncer constructor(
}.
filter
{
val
caseMapper
=
IrcCaseMappers
[
session
.
networks
[
it
.
networkId
]
?.
support
(
"CASEMAPPING"
)]
bufferName
==
null
||
caseMapper
.
equalsIgnoreCaseNullable
(
it
.
bufferName
,
bufferName
)
}
}
.
toList
()
}
fun
find
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment