You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by ma...@apache.org on 2020/11/13 21:45:34 UTC

[netbeans-tools] branch master updated: [NETBEANS-5013] Fix syntax error in plugin portal verification code

This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-tools.git


The following commit(s) were added to refs/heads/master by this push:
     new 90d2bbd  [NETBEANS-5013] Fix syntax error in plugin portal verification code
     new 6cb1c92  Merge pull request #37 from matthiasblaesing/pp3-fix-netbeans-5013
90d2bbd is described below

commit 90d2bbd10c40edf8760e0aacb91999045b5fb76c
Author: Matthias Bläsing <mb...@doppel-helix.eu>
AuthorDate: Fri Nov 13 22:40:53 2020 +0100

    [NETBEANS-5013] Fix syntax error in plugin portal verification code
---
 .../Application/src/Application/Controller/VerificationController.php   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pp3/module/Application/src/Application/Controller/VerificationController.php b/pp3/module/Application/src/Application/Controller/VerificationController.php
index e83ccd0..1a68c51 100644
--- a/pp3/module/Application/src/Application/Controller/VerificationController.php
+++ b/pp3/module/Application/src/Application/Controller/VerificationController.php
@@ -104,7 +104,7 @@ class VerificationController extends AuthenticatedController {
             $this->_sendNoGoNotification($req->getVerification(), $comment);
         } elseif ($verification->getStatus() == \Application\Entity\Verification::STATUS_GO) {
             $this->_sendGoNotification($req->getVerification(), $comment);
-            $nbVersion = $verification->getNbVersionPluginVersion()->getNbVersion()->get;
+            $nbVersion = $verification->getNbVersionPluginVersion()->getNbVersion();
             $nbVersion->requestCatalogRebuild();
             $this->_nbVersionRepository->persist($nbVersion);
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists