Skip to content

Commit

Permalink
Fixed megabit
Browse files Browse the repository at this point in the history
  • Loading branch information
zenden2k committed Mar 8, 2021
1 parent df1f158 commit 43f5fdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KeeneticPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ PLUGIN_EXPORT double Update(void* data)
if (!data2.empty()) {
Json::Value download = *data2.begin();
double dlSpeed = download["v"].asDouble();
return dlSpeed / 1048576.0;
return dlSpeed / 1000000.0;
}
}

Expand Down

0 comments on commit 43f5fdd

Please sign in to comment.