[repo] fix timestamps

This commit is contained in:
Hylke Bons 2010-09-12 21:31:22 +01:00
parent 1609b309e6
commit 8b49394384

View file

@ -162,12 +162,13 @@ namespace SparkleLib {
};
// TODO: Change to OnTopicChange. The topic will contain the latest hash
// Fetch changes when there is a message in the irc channel
Listener.Client.OnChannelMessage += delegate (object o, IrcEventArgs args) {
Listener.Client.OnChannelMessage += delegate (object o, IrcEventArgs args) { // TODO: TopicChangeEventArgs
SparkleHelpers.DebugInfo ("Irc", "[" + Name + "] Was notified of a remote change.");
if (!args.Data.Message.Equals (CurrentHash)) {
if (!args.Data.Message.Equals (CurrentHash)) { //TODO: args.Data.NewTopic
FetchRequests++;
@ -910,8 +911,6 @@ namespace SparkleLib {
commits.Add (commit);
unix_timestamp = 0;
}
return commits;