From d3f2ea1da41af3d8923945962e6403c075e89ff1 Mon Sep 17 00:00:00 2001 From: Taner Sener Date: Sat, 9 Sep 2023 21:33:46 +0100 Subject: [PATCH] Revert "fix(doc): Get media information for a file/url example" --- flutter/flutter/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter/flutter/README.md b/flutter/flutter/README.md index fac2c5c..e6474c2 100644 --- a/flutter/flutter/README.md +++ b/flutter/flutter/README.md @@ -211,7 +211,7 @@ The following table shows Android API level, iOS deployment target and macOS dep FFprobeKit.getMediaInformation('').then((session) async { final information = await session.getMediaInformation(); - if (information != null) { + if (information == null) { // CHECK THE FOLLOWING ATTRIBUTES ON ERROR final state = FFmpegKitConfig.sessionStateToString(await session.getState());