mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-08-03 06:39:39 +00:00
Fix the printed versions (were opposite)
(cherry picked from commit 7e36540c21eef4964b73824d8845b2468899981e) (cherry picked from commitef95046c3e
) (cherry picked from commit fa3644cca2ba2c4a562a203ff773c021f9082175) (cherry picked from commita5d5ea1b73
)
This commit is contained in:
parent
15c0d5ee98
commit
fd5489dce0
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ public final class Server {
|
||||||
String clientVersion = args[0];
|
String clientVersion = args[0];
|
||||||
if (!clientVersion.equals(BuildConfig.VERSION_NAME)) {
|
if (!clientVersion.equals(BuildConfig.VERSION_NAME)) {
|
||||||
throw new IllegalArgumentException(
|
throw new IllegalArgumentException(
|
||||||
"The server version (" + clientVersion + ") does not match the client " + "(" + BuildConfig.VERSION_NAME + ")");
|
"The server version (" + BuildConfig.VERSION_NAME + ") does not match the client " + "(" + clientVersion + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args.length != 10) {
|
if (args.length != 10) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue