]> granicus.if.org Git - ejabberd/commitdiff
* src/mod_private_odbc: Bugfix: an internal error was returned
authorMickaël Rémond <mickael.remond@process-one.net>
Thu, 21 Dec 2006 09:03:53 +0000 (09:03 +0000)
committerMickaël Rémond <mickael.remond@process-one.net>
Thu, 21 Dec 2006 09:03:53 +0000 (09:03 +0000)
instead of the actual private data. This is now working as expected.
(EJAB-165)

SVN Revision: 699

ChangeLog
src/mod_private_odbc.erl

index 5971cf34f35b1cc2bf2b65dce5f49b832ceab8e8..4c7f7db55bfc5f6e86d17d4d1c505ce6598e1b76 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-12-21  Mickael Remond  <mickael.remond@process-one.net>
+
+       * src/mod_private_odbc: Bugfix: an internal error was returned
+       instead of the actual private data. This is now working as expected.
+
 2006-12-21  Alexey Shchepin  <alexey@sevcom.net>
 
        * src/ejd2odbc.erl: Bugfix
index 45e07233acb7517b3f864b59534ec223f2df401a..acefa214afd07aedd7623a05eb0202c9cb8447cc 100644 (file)
@@ -103,7 +103,9 @@ get_data(LUser, LServer, [El | Els], Res) ->
                %% MREMOND: I wonder when the query could return a vcard ?
                {selected, ["vcard"], []} ->
                    get_data(LUser, LServer, Els,
-                            [El | Res])
+                            [El | Res]);
+           _ -> 
+               get_data(LUser, LServer, Els,[El | Res])
            end;
        _ ->
            get_data(LUser, LServer, Els, Res)