Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
KDE PIM Runtime
Commits
319371f2
Commit
319371f2
authored
Aug 17, 2020
by
Shashwat Jolly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more logs while item setup
parent
36c0f130
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
resources/etesync/calendartaskbasehandler.cpp
resources/etesync/calendartaskbasehandler.cpp
+6
-1
No files found.
resources/etesync/calendartaskbasehandler.cpp
View file @
319371f2
...
...
@@ -57,13 +57,18 @@ void CalendarTaskBaseHandler::getItemListFromEntries(std::vector<EteSyncEntryPtr
}
EteSyncSyncEntryPtr
syncEntry
=
etesync_entry_get_sync_entry
(
entry
.
get
(),
cryptoManager
.
get
(),
prevUid
);
if
(
!
syncEntry
)
{
qCDebug
(
ETESYNC_LOG
)
<<
"SetupItems: syncEntry is null for entry"
<<
etesync_entry_get_uid
(
entry
.
get
());
continue
;
}
CharPtr
contentStr
(
etesync_sync_entry_get_content
(
syncEntry
.
get
()));
KCalendarCore
::
ICalFormat
format
;
const
KCalendarCore
::
Incidence
::
Ptr
incidence
=
format
.
fromString
(
QStringFromCharPtr
(
contentStr
));
if
(
!
incidence
||
(
incidence
->
uid
()).
isEmpty
())
{
qCDebug
(
ETESYNC_LOG
)
<<
"Couldn't parse entry
"
;
qCDebug
(
ETESYNC_LOG
)
<<
"Couldn't parse entry
with uid"
<<
etesync_entry_get_uid
(
entry
.
get
())
;
continue
;
}
...
...
Write
Preview
Markdown
is supported
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