Explorar el Código

fix app action string message

tags/v0.5.0
Jonathan Cobb hace 5 años
padre
commit
7d9c1c97ba
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      bubble-server/src/main/java/bubble/service/message/AppMessageService.java

+ 2
- 2
bubble-server/src/main/java/bubble/service/message/AppMessageService.java Ver fichero

@@ -100,11 +100,11 @@ public class AppMessageService {

if (configView.hasActions()) {
for (AppConfigAction action : configView.getActions()) {
final String actionKey = cfgKeyPrefix + MSG_SUFFIX_ACTION + action;
final String actionKey = cfgKeyPrefix + MSG_SUFFIX_ACTION + action.getName();
if (!props.containsKey(actionKey)) props.setProperty(actionKey, action.getName());

if (action.hasButton()) {
final String buttonKey = cfgKeyPrefix + MSG_SUFFIX_BUTTON + action;
final String buttonKey = cfgKeyPrefix + MSG_SUFFIX_BUTTON + action.getName();
if (!props.containsKey(buttonKey)) props.setProperty(buttonKey, action.getButton());
}



Cargando…
Cancelar
Guardar