Skip to content

Commit 0b9bb93

Browse files
committed
#1050 #1055 Detection of tracks based on the filtered streams were not taken into consideration. Such tweets are now properly considered.
1 parent f9ff788 commit 0b9bb93

File tree

6 files changed

+275
-247
lines changed

6 files changed

+275
-247
lines changed

src/Tweetinvi.Core/Core/Extensions/DictionaryExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static void AddOrUpdate<T1, T2>(this Dictionary<T1, T2> dictionary, T1 ke
3434
}
3535
}
3636

37-
public static IDictionary<T1, T2> MergeWith<T1, T2>(this Dictionary<T1, T2> source, Dictionary<T1, T2> other)
37+
public static Dictionary<T1, T2> MergeWith<T1, T2>(this Dictionary<T1, T2> source, Dictionary<T1, T2> other)
3838
{
3939
var dictionaries = new[] { source, other };
4040
return dictionaries.SelectMany(dict => dict)

src/Tweetinvi.Core/Public/Events/TweetEventArgs.cs

+5
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ public MatchedTweetReceivedEventArgs(ITweet tweet, string json) : base(tweet, js
4141
public long[] MatchingFollowers { get; set; }
4242
public MatchOn MatchOn { get; set; }
4343

44+
public string[] RetweetMatchingTracks { get; set; }
45+
public ILocation[] RetweetMatchingLocations { get; set; }
46+
public long[] RetweetMatchingFollowers { get; set; }
47+
public MatchOn RetweetMatchOn { get; set; }
48+
4449
public string[] QuotedTweetMatchingTracks { get; set; }
4550
public ILocation[] QuotedTweetMatchingLocations { get; set; }
4651
public long[] QuotedTweetMatchingFollowers { get; set; }

0 commit comments

Comments
 (0)