Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
DrKonqi
Commits
44879708
Commit
44879708
authored
Apr 21, 2022
by
Harald Sitter
🏳️🌈
Browse files
instance ids have 2 hyphens not 3
3 numbers but 2 hyphens. one can see where my brain took the wrong turn ;)
parent
288a7154
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/coredump/processor/main.cpp
View file @
44879708
...
...
@@ -92,7 +92,7 @@ public:
return
;
}
if
(
instance
.
count
(
QLatin1Char
(
'-'
))
>=
3
)
{
if
(
instance
.
count
(
QLatin1Char
(
'-'
))
>=
2
)
{
// older systemds have a bug where %I doesn't actually expand correctly and only contains the first element.
// This prevents us from matching through sd API. Instead processLog will filter based on the instance
// information prefix. It's still unique enough.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment