We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 297fc12 commit c1c98a0Copy full SHA for c1c98a0
lib/mongo.ex
@@ -1548,13 +1548,14 @@ defmodule Mongo do
1548
1549
{_, params} = Keyword.pop_first(cmd, command)
1550
1551
- {collection, params} = case command do
1552
- :getMore ->
1553
- Keyword.pop_first(params, :collection)
+ {collection, params} =
+ case command do
+ :getMore ->
1554
+ Keyword.pop_first(params, :collection)
1555
- _other ->
1556
- {Keyword.get(cmd, command), params}
1557
- end
+ _other ->
+ {Keyword.get(cmd, command), params}
1558
+ end
1559
1560
collection =
1561
case is_binary(collection) do
0 commit comments