Index: extensions/PiwigoLib/PiwigoWpf/Command/PwgCmdProvider.cs
===================================================================
--- extensions/PiwigoLib/PiwigoWpf/Command/PwgCmdProvider.cs	(revision 11935)
+++ extensions/PiwigoLib/PiwigoWpf/Command/PwgCmdProvider.cs	(revision 12015)
@@ -26,4 +26,7 @@
                 case "PwgCmdGetSubCategorieforCategory":
                     objICom = PwgCmdGetSubCategorieforCategory;
+                    break;
+                case "PwgCmdGetImageforTag":
+                    objICom = PwgCmdGetImageforTag;
                     break;
                 default:
@@ -86,4 +89,16 @@
         }
 
+        public static AsyncCommand _pwgCmdGetImageforTag;
+        public static AsyncCommand PwgCmdGetImageforTag
+        {
+            get
+            {
+                if (_pwgCmdGetImageforTag == null)
+                {
+                    _pwgCmdGetImageforTag = new PwgCmdGetImageforTag();
+                }
+                return _pwgCmdGetImageforTag;
+            }
+        }
     }
 }
