X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Frm%2Fplugins%2Fagendav.rb;fp=lib%2Frm%2Fplugins%2Fagendav.rb;h=bebab618b06f190e979fb79c632c7239a409cccf;hp=0f4e790f6f4007f124eed570db7d52651f767d8a;hb=f819b178c5c1cb8adda0182c610e5c52fad8bea7;hpb=8a3e804a4c5f33bee1d80243be6b139e45f07a48 diff --git a/lib/rm/plugins/agendav.rb b/lib/rm/plugins/agendav.rb index 0f4e790..bebab61 100644 --- a/lib/rm/plugins/agendav.rb +++ b/lib/rm/plugins/agendav.rb @@ -12,7 +12,7 @@ class AgendavRm def delete_user(user) # Delete the given username and any records in other tables # belonging to it. - raise NonexistentUserError.new(user) if not user_exists(user) + raise NonexistentUserError.new(user.to_s()) if not user_exists(user) sql_queries = ['DELETE FROM prefs WHERE username = $1;'] sql_queries << 'DELETE FROM shared WHERE user_from = $1;' @@ -27,7 +27,7 @@ class AgendavRm @db_pass) sql_queries.each do |sql_query| - connection.query(sql_query, [user]) + connection.query(sql_query, [user.to_s()]) end connection.close()