Ver código fonte

Fix bug introduced in 67278f5

tags/v1.5.1
James Moger 10 anos atrás
pai
commit
55dc95d601

+ 1
- 0
releases.moxie Ver arquivo

@@ -26,6 +26,7 @@ r23: {
- Ralph Hoffman
- Olivier Rouits
- Owen Nelson
- Alexander Zabluda
}

#

+ 1
- 1
src/main/java/com/gitblit/models/PluginRegistry.java Ver arquivo

@@ -126,7 +126,7 @@ public class PluginRegistry implements Serializable {
Version ir = Version.createVersion(installedRelease);
Version cr = Version.ZERO;
PluginRelease curr = getCurrentRelease(system);
if (cr != null) {
if (curr != null) {
cr = Version.createVersion(curr.version);
}
switch (ir.compareTo(cr)) {

Carregando…
Cancelar
Salvar