提交 a485adcc 编写于 作者: Z Zhang Rui

android/AndroidTrackInfo: null check

上级 03ed273a
......@@ -87,8 +87,13 @@ public class AndroidTrackInfo implements ITrackInfo {
return out.toString();
}
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
@Override
public String getInfoInline() {
return mTrackInfo.toString();
if (mTrackInfo != null) {
return mTrackInfo.toString();
} else {
return "null";
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册