We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8640239 commit 9c101b8Copy full SHA for 9c101b8
1 file changed
app/services/PPMSSyncService.scala
@@ -181,7 +181,7 @@ class PPMSSyncService (application: Application) extends Plugin {
181
val projDesc = (projectInfo \ "Descr").as[String]
182
var rawDataStorage = (extraProfile \ ppmsStorageField).as[String]
183
Logger.info(">>>Syncing project: " + projName + " id=" + projId.toString)
184
- if (rawDataStorage == None || rawDataStorage.trim().isEmpty()) {
+ if (rawDataStorage == None || rawDataStorage.trim().isEmpty() || !rawDataStorage.contains("-")) {
185
Logger.info("Project " + projName + " has no storage defined. Ignore!!!")
186
return
187
}
0 commit comments