Skip to content
Snippets Groups Projects
Verified Commit cba3ec7a authored by Ubbo Veentjer's avatar Ubbo Veentjer
Browse files

Merge branch 'release/4.4.1'

parents c4d9a327 c2d07e6f
No related branches found
Tags 4.4.1
No related merge requests found
Pipeline #506004 passed
......@@ -10,7 +10,7 @@ plugins {
}
group = 'info.textgrid.rep'
version = '4.4.0'
version = '4.4.1'
sourceCompatibility = '17'
bootWar {
......
......@@ -154,7 +154,9 @@ public class BrowseProjectController {
Object value1 = p1.getPortalconfig();
Object value2 = p2.getPortalconfig();
if (value1 == null) {
if (value1 == null && value2 == null) {
return 0;
} else if(value1 == null) {
return 1;
} else if (value2 == null) {
return -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment