diff --git a/src/main/java/org/olat/commons/calendar/ICalServlet.java b/src/main/java/org/olat/commons/calendar/ICalServlet.java index e33d5d4385578f086a3ff36fa43df1d0bccb9567..4bbaad56da8018d45b3e04e78b5f0ef6b6200345 100644 --- a/src/main/java/org/olat/commons/calendar/ICalServlet.java +++ b/src/main/java/org/olat/commons/calendar/ICalServlet.java @@ -343,7 +343,7 @@ public class ICalServlet extends HttpServlet { String userAgent = request.getHeader("User-Agent"); if(userAgent == null) { return Agent.unkown; - } else if(userAgent.indexOf("Microsoft Outlook") >= 0 || userAgent.indexOf("Microsoft Office") >= 0 + } else if(userAgent.indexOf("Microsoft ") >= 0 // to catch "Microsoft Outlook", "Microsoft Office", "Microsoft Exchange" which are all user agents used by outlook.com || userAgent.equals("Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)")) {// <- this is the user agent of Outlook live return Agent.outlook; } else if(userAgent.indexOf("Google") >= 0 && userAgent.indexOf("Calendar") >= 0) {