Skip to content

Commit d8bd3ad

Browse files
Fixed bug with Include Filters
1 parent f9fe2be commit d8bd3ad

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

VSoft.Messaging.dspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"id": "VSoft.Messaging",
4-
"version": "0.3.1",
4+
"version": "0.3.4",
55
"description": "VSoft.Messaging is a libary that provides an internal synchronous/asynchronous publish/subscribe messaging system for Delphi applications.",
66
"authors": "Vincent Parrett",
77
"projectUrl": "https://github.com/VSoftTechnologies/VSoft.SemanticVersion",
@@ -71,7 +71,7 @@
7171
"template": "default"
7272
},
7373
{
74-
"compiler": "11",
74+
"compiler": "11.0",
7575
"platforms": "Win32, Win64",
7676
"template": "default"
7777
}
@@ -82,7 +82,7 @@
8282
"dependencies": [
8383
{
8484
"id": "VSoft.WeakReference",
85-
"version": "[0.1.1,]"
85+
"version": "[0.1.2,]"
8686
}
8787
],
8888
"source": [

packages/Rad Studio 11 Alexandria/VSoft.MessagingR.dpk renamed to packages/Rad Studio 11.0 Alexandria/VSoft.MessagingR.dpk

File renamed without changes.

packages/Rad Studio 11 Alexandria/VSoft.MessagingR.dproj renamed to packages/Rad Studio 11.0 Alexandria/VSoft.MessagingR.dproj

File renamed without changes.

src/VSoft.Messaging.Dispatchers.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,8 @@ function TMessageDispatcherBase.GetExcludeFilter: TArray<Cardinal>;
324324
function TMessageDispatcherBase.GetIncludeFilter: TArray<Cardinal>;
325325
begin
326326
SetLength(result,0);
327-
if FExcludeFilter <> nil then
328-
result := FExcludeFilter.Keys.ToArray;
327+
if FIncludeFilter <> nil then
328+
result := FIncludeFilter.Keys.ToArray;
329329
end;
330330

331331
function TMessageDispatcherBase.GetTarget: TObject;

0 commit comments

Comments
 (0)