Microsoft Teams: Patch Missing Conversations

Hot patch "missing conversations" bug where threads are truncated at 2-3 replies

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        Microsoft Teams: Patch Missing Conversations
// @namespace   http://www.asaurus.net/
// @description Hot patch "missing conversations" bug where threads are truncated at 2-3 replies
//              and old threads won't populate, after a channel switch.
//              Author: Kevin Buhr <[email protected]>
// @match       https://teams.microsoft.com/*
// @version     1.1
// @grant       none
// @license     Public Domain
// ==/UserScript==

var prefix = "Patch Missing Conversations: ";
(function loop() {
	var mp = unsafeWindow.angular && unsafeWindow.angular.element("message-pane");
 	var ct = mp && mp.controller && mp.controller("messagePane");
  if (ct) {
    var cp = ct.constructor.prototype;
    if (cp.initialize.patched) {
      console.log(prefix+"patch already applied");
    } else {
      var oldinitialize = cp.initialize;
      var initialize = function() {
        var that = this.wrappedJSObject || this;
        if (that.context === '') return;
        oldinitialize.call(that);
      }
      initialize.patched = 1;
      cp.initialize = exportFunction(initialize, cp);
    	console.log(prefix+"patch applied");
 	 }
	} else {
  	setTimeout(loop, 1000);
  }
})();