Conversation
Codecov Report
@@ Coverage Diff @@
## master #37750 +/- ##
============================================
- Coverage 64.71% 64.71% -0.01%
Complexity 19386 19386
============================================
Files 1283 1283
Lines 75732 75736 +4
Branches 1333 1333
============================================
+ Hits 49009 49011 +2
- Misses 26331 26333 +2
Partials 392 392
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
1 similar comment
Codecov Report
@@ Coverage Diff @@
## master #37750 +/- ##
============================================
- Coverage 64.71% 64.71% -0.01%
Complexity 19386 19386
============================================
Files 1283 1283
Lines 75732 75736 +4
Branches 1333 1333
============================================
+ Hits 49009 49011 +2
- Misses 26331 26333 +2
Partials 392 392
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
|
@phil-davis added you to the reviewers. I guess there are tests necessary to to make codecov happy... |
|
My IDE tells me that there are no unit tests for class CalendarHome - someone would have to write unit tests "from scratch" for this class. |
|
Any progress? |
38bbfcf to
a0734e6
Compare
|
I rebased to get fresh CI. There are currently no unit tests for this stuff. @micbar what to do? |
a0734e6 to
0f1c83b
Compare
Codecov Report
@@ Coverage Diff @@
## master #37750 +/- ##
============================================
- Coverage 64.75% 64.75% -0.01%
Complexity 19403 19403
============================================
Files 1285 1285
Lines 75816 75817 +1
Branches 1336 1336
============================================
Hits 49094 49094
- Misses 26328 26329 +1
Partials 394 394
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
|
codecov seems to be stuck - or? |
|
ci is ok, merging without codecov? |
Description
Fix decoding of calendars uri
Motivation and Context
This PR fixes decoding of calendars uri in case they do contain special characters, for instance,
persönlich.How Has This Been Tested?
Manually:
create a new user, log in as this user, go into the DB and update his oc_calendars.uri like:
update oc_calendars set uri='persönlich' where id=$id. So basically by adding an umlaut in his calendar urias another user try to invite this user to an event --> without this fix, the event cannot be created and a 404 is shown in the stack trace. Reason for this is the uri not being properly decoded.
With this fix, the event can be correctly created and 404 is not logged anymore.
Types of changes
Checklist: