[FELIX-3097] LocalRepository is not updated when bundles are

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1664256 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundlerepository/src/main/java/org/apache/felix/bundlerepository/impl/LocalRepositoryImpl.java b/bundlerepository/src/main/java/org/apache/felix/bundlerepository/impl/LocalRepositoryImpl.java
index a97972e..862ffb0 100644
--- a/bundlerepository/src/main/java/org/apache/felix/bundlerepository/impl/LocalRepositoryImpl.java
+++ b/bundlerepository/src/main/java/org/apache/felix/bundlerepository/impl/LocalRepositoryImpl.java
@@ -46,7 +46,7 @@
 
     public void bundleChanged(BundleEvent event)
     {
-        if (event.getType() == BundleEvent.INSTALLED)
+        if (event.getType() == BundleEvent.INSTALLED || event.getType() == BundleEvent.UPDATED)
         {
             synchronized (this)
             {