From 8baa222396fff93ae388ac2ee01a153946a23d54 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Wed, 31 Aug 2011 11:08:18 -0500 Subject: [PATCH] dont forget a comment --- lib/clouddns/record.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/clouddns/record.rb b/lib/clouddns/record.rb index 3a73175..5ceb6e9 100644 --- a/lib/clouddns/record.rb +++ b/lib/clouddns/record.rb @@ -127,7 +127,7 @@ def validate_record_data # Calculate record checksum based on its string representation # def checksum - str = [@name, @ttl, @type, @data, @priority].join('') + str = [@name, @ttl, @type, @data, @priority, @comment].join('') Digest::SHA1.hexdigest(str) end end